Use uint32_t for ui Arg

This commit is contained in:
Ben Collerson 2023-04-09 14:48:55 +10:00 committed by Leonardo Hernández
parent 20f61a59af
commit da77e34ee5
1 changed files with 1 additions and 1 deletions

2
dwl.c
View File

@ -82,7 +82,7 @@ enum { NetWMWindowTypeDialog, NetWMWindowTypeSplash, NetWMWindowTypeToolbar,
typedef union {
int i;
unsigned int ui;
uint32_t ui;
float f;
const void *v;
} Arg;