From b05202e9bf21dee9b0d729204e9d1d03eb0bb94c Mon Sep 17 00:00:00 2001 From: XANTRONIX Development Date: Thu, 22 Oct 2020 23:04:09 +0100 Subject: [PATCH] Use size_t for length in patty_list --- include/patty/list.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/patty/list.h b/include/patty/list.h index ef07b75..97239bf 100644 --- a/include/patty/list.h +++ b/include/patty/list.h @@ -12,7 +12,7 @@ typedef struct _patty_list_item { } patty_list_item; typedef struct _patty_list { - uint64_t length; + size_t length; patty_list_item *first, *last;