diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2021-07-08 13:08:38 +0400 |
---|---|---|
committer | Marc-André Lureau <marcandre.lureau@redhat.com> | 2021-07-08 13:08:43 +0400 |
commit | 42249ce28e807e12e244861da237a766792b313e (patch) | |
tree | 407077ecc316c413892638d88a7fcd9961d8a943 | |
parent | 6818eee85900f2f50e99e5132d08b06ae12e823d (diff) | |
download | gtk+-42249ce28e807e12e244861da237a766792b313e.tar.gz |
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>
-rw-r--r-- | gtk/gtktypes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtktypes.h b/gtk/gtktypes.h index 79720618f0..5892c0980e 100644 --- a/gtk/gtktypes.h +++ b/gtk/gtktypes.h @@ -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 |