Use size_t for length in patty_list
This commit is contained in:
parent
00879d33c5
commit
b05202e9bf
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ typedef struct _patty_list_item {
|
||||||
} patty_list_item;
|
} patty_list_item;
|
||||||
|
|
||||||
typedef struct _patty_list {
|
typedef struct _patty_list {
|
||||||
uint64_t length;
|
size_t length;
|
||||||
|
|
||||||
patty_list_item *first,
|
patty_list_item *first,
|
||||||
*last;
|
*last;
|
||||||
|
|
Loading…
Add table
Reference in a new issue