gtk: fix GTK_INVALID_LIST_POSITION type

Unless there is an explicit front cast, constants are generally int for g-i.

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
This commit is contained in:
Marc-André Lureau
2021-07-08 13:08:38 +04:00
parent 6818eee859
commit 42249ce28e

View File

@@ -69,7 +69,7 @@ typedef struct _GtkWindow GtkWindow;
* Refer to each function's documentation for if this value is
* allowed and what it does.
*/
#define GTK_INVALID_LIST_POSITION (0xffffffffU)
#define GTK_INVALID_LIST_POSITION ((guint32) 0xffffffff)
G_END_DECLS