Fix incorrect format specifiers

This commit is contained in:
Antonin Décimo 2020-06-04 15:43:42 +02:00
parent 54d482bf8e
commit 97d6e754ad
7 changed files with 10 additions and 10 deletions

View file

@ -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);