From e9ccc6a82ef3fbb42550b65ee155bf53ef694ec8 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Sat, 26 May 2007 15:25:57 +0000 Subject: [PATCH] fix a debug print --- openbox/client.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/openbox/client.c b/openbox/client.c index d94afccf..4a3e8c37 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -377,7 +377,9 @@ void client_manage(Window window) (!self->positioned ? "no" : (self->positioned == PPosition ? "program specified" : (self->positioned == USPosition ? "user specified" : - "BADNESS !?"))), self->area.x, self->area.y); + (self->positioned == PPosition | USPosition ? + "program + user specified" : + "BADNESS !?")))), self->area.x, self->area.y); transient = place_client(self, &placex, &placey, settings); -- 2.39.2