summaryrefslogtreecommitdiff
path: root/openbox/window.c
diff options
context:
space:
mode:
authorMikael Magnusson <mikachu@gmail.com>2008-06-10 17:55:03 +0200
committerMikael Magnusson <mikachu@gmail.com>2008-10-27 00:55:42 +0100
commit7b57ef12963a298c731d0ef4a67de9c985ac9ba4 (patch)
treea8507e7278f2f19d449272c6019ecbd11627d8f5 /openbox/window.c
parent8f37a97a4cc29d35f6a632ef2f71ac760e301ee5 (diff)
No \n on ob_debug in this branch.
Diffstat (limited to 'openbox/window.c')
-rw-r--r--openbox/window.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/openbox/window.c b/openbox/window.c
index b90dc509..19b362ed 100644
--- a/openbox/window.c
+++ b/openbox/window.c
@@ -162,7 +162,7 @@ void window_manage(Window win)
XCheckTypedWindowEvent(obt_display, win, UnmapNotify, &e))
{
XPutBackEvent(obt_display, &e);
- ob_debug("Trying to manage unmapped window. Aborting that.\n");
+ ob_debug("Trying to manage unmapped window. Aborting that.");
no_manage = TRUE;
}
@@ -187,7 +187,7 @@ void window_manage(Window win)
if (!no_manage) {
if (attrib.override_redirect) {
- ob_debug("not managing override redirect window 0x%x\n", win);
+ ob_debug("not managing override redirect window 0x%x", win);
grab_server(FALSE);
}
else if (is_dockapp) {
@@ -200,7 +200,7 @@ void window_manage(Window win)
}
else {
grab_server(FALSE);
- ob_debug("FAILED to manage window 0x%x\n", win);
+ ob_debug("FAILED to manage window 0x%x", win);
}
}