mirror of
https://github.com/swaywm/sway.git
synced 2025-04-03 19:07:45 +03:00
Fix incorrect format specifiers
This commit is contained in:
parent
a1c6052383
commit
bbf7b92fe4
7 changed files with 10 additions and 10 deletions
|
@ -106,7 +106,7 @@ int main(int argc, char **argv) {
|
|||
}
|
||||
|
||||
sway_log(SWAY_DEBUG, "Output: %s", swaynag.type->output);
|
||||
sway_log(SWAY_DEBUG, "Anchors: %d", swaynag.type->anchors);
|
||||
sway_log(SWAY_DEBUG, "Anchors: %" PRIu32, swaynag.type->anchors);
|
||||
sway_log(SWAY_DEBUG, "Type: %s", swaynag.type->name);
|
||||
sway_log(SWAY_DEBUG, "Message: %s", swaynag.message);
|
||||
sway_log(SWAY_DEBUG, "Font: %s", swaynag.type->font);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue