all repos — openbox @ 98b1c84bb5caca8a5590e40ad4a4f63a9eb2b869

openbox fork - make it a bit more like ryudo

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))
         ^~~~~~~~~~~~~~
Mikael Magnusson mikachu@gmail.com
commit

98b1c84bb5caca8a5590e40ad4a4f63a9eb2b869

parent

59eb52b7c6ccbe83742e5eb8b40b5e32bb6600cc

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M openbox/client.copenbox/client.c

@@ -247,7 +247,7 @@ ObAppSettings *settings;

gboolean transient = FALSE; Rect place, *monitor; Time launch_time, map_time; - gint user_time; + guint32 user_time; grab_server(TRUE);