summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2017-08-03 07:06:59 -0400
committerLibravatar GitHub <noreply@github.com>2017-08-03 07:06:59 -0400
commitf8d0e1f94635e6334d2d646797dfd43c219e213a (patch)
tree94e0b008c9c37b3049b1732ded1d09dc30b5220e
parentMerge pull request #1294 from 4e554c4c/swaylock_size (diff)
parentFix typo in debug log (diff)
downloadsway-f8d0e1f94635e6334d2d646797dfd43c219e213a.tar.gz
sway-f8d0e1f94635e6334d2d646797dfd43c219e213a.tar.zst
sway-f8d0e1f94635e6334d2d646797dfd43c219e213a.zip
Merge pull request #1300 from emersion/patch-1
Fix typo in debug log
-rw-r--r--wayland/registry.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/wayland/registry.c b/wayland/registry.c
index 2df605a8..bbb43ad9 100644
--- a/wayland/registry.c
+++ b/wayland/registry.c
@@ -19,7 +19,7 @@ static void display_handle_mode(void *data, struct wl_output *wl_output,
19 state->flags = flags; 19 state->flags = flags;
20 state->width = width; 20 state->width = width;
21 state->height = height; 21 state->height = height;
22 sway_log(L_DEBUG, "Got mode %dx%x:0x%X for output %p", 22 sway_log(L_DEBUG, "Got mode %dx%d:0x%X for output %p",
23 width, height, flags, data); 23 width, height, flags, data);
24 } 24 }
25} 25}