summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2009-12-08 10:11:21 -0500
committerDana Jansens <danakj@orodu.net>2009-12-08 10:11:21 -0500
commit8237564b4784c69ab50a9291d503850cb6018f67 (patch)
treec0001bd5fad38d6da86cb8746bdd4d9f137c8c4b
parent7f36e21ea9d86df5e6fa62d2888891ed957c4639 (diff)
Add needed linebreaks to the end of some debug messages
-rw-r--r--openbox/grab.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/openbox/grab.c b/openbox/grab.c
index 214666e5..03e21bdf 100644
--- a/openbox/grab.c
+++ b/openbox/grab.c
@@ -181,7 +181,7 @@ void grab_button_full(guint button, guint state, Window win, guint mask,
pointer_mode, GrabModeAsync, None, ob_cursor(cur));
xerror_set_ignore(FALSE);
if (xerror_occured)
- ob_debug("Failed to grab button %d modifiers %d", button, state);
+ ob_debug("Failed to grab button %d modifiers %d\n", button, state);
}
void ungrab_button(guint button, guint state, Window win)
@@ -203,7 +203,7 @@ void grab_key(guint keycode, guint state, Window win, gint keyboard_mode)
GrabModeAsync, keyboard_mode);
xerror_set_ignore(FALSE);
if (xerror_occured)
- ob_debug("Failed to grab keycode %d modifiers %d", keycode, state);
+ ob_debug("Failed to grab keycode %d modifiers %d\n", keycode, state);
}
void ungrab_all_keys(Window win)