commit b6b0be1e0a5f00e057c5ef1697c1d1b8df7d5371
parent f59fb6bc761741fb2ed1abb6b4d4fb0509572dca
Author: emersion <contact@emersion.fr>
Date: Thu, 3 Aug 2017 13:00:06 +0200
Fix typo in debug log
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/wayland/registry.c b/wayland/registry.c
@@ -19,7 +19,7 @@ static void display_handle_mode(void *data, struct wl_output *wl_output,
state->flags = flags;
state->width = width;
state->height = height;
- sway_log(L_DEBUG, "Got mode %dx%x:0x%X for output %p",
+ sway_log(L_DEBUG, "Got mode %dx%d:0x%X for output %p",
width, height, flags, data);
}
}