girnode: Improve int types in GIIrNodeSignal

`class_closure` isn’t actually meaningfully set anywhere in the code yet
(there are FIXME comments), so I’m not sure of the best type for it. But
generally `unsigned` is more widely used than signed `int`.

Signed-off-by: Philip Withnall <pwithnall@gnome.org>

Helps: #3155
This commit is contained in:
Philip Withnall 2024-01-26 09:17:19 +00:00
parent e7f26b1440
commit 468b926c2b

View File

@ -220,7 +220,7 @@ struct _GIIrNodeSignal
uint8_t has_class_closure : 1;
uint8_t true_stops_emit : 1;
int class_closure;
unsigned int class_closure;
GList *parameters; /* (element-type GIIrNode) (owned) */
GIIrNodeParam *result; /* (owned) */