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))
         ^~~~~~~~~~~~~~
This commit is contained in:
Mikael Magnusson 2008-11-10 23:34:50 +01:00
parent 59eb52b7c6
commit 98b1c84bb5

View file

@ -247,7 +247,7 @@ void client_manage(Window window, ObPrompt *prompt)
gboolean transient = FALSE; gboolean transient = FALSE;
Rect place, *monitor; Rect place, *monitor;
Time launch_time, map_time; Time launch_time, map_time;
gint user_time; guint32 user_time;
grab_server(TRUE); grab_server(TRUE);