From 98b1c84bb5caca8a5590e40ad4a4f63a9eb2b869 Mon Sep 17 00:00:00 2001 From: Mikael Magnusson Date: Mon, 10 Nov 2008 23:34:50 +0100 Subject: [PATCH] Fix a problem pointed out by clang openbox/client.c:269:10: warning: incompatible pointer types passing 'gint *', expected 'guint32 *' if (!OBT_PROP_GET32(self->window, NET_WM_USER_TIME, CARDINAL, &user_time)) ^~~~~~~~~~~~~~ --- openbox/client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openbox/client.c b/openbox/client.c index 39a0346..03bbfe4 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -247,7 +247,7 @@ void client_manage(Window window, ObPrompt *prompt) gboolean transient = FALSE; Rect place, *monitor; Time launch_time, map_time; - gint user_time; + guint32 user_time; grab_server(TRUE); -- 1.9.1