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:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user