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:
parent
59eb52b7c6
commit
98b1c84bb5
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue