Change type of Array.len to size_t

This commit is contained in:
Felipe Oliveira Carvalho 2017-12-03 19:14:58 +01:00
parent 3ba1ebfe65
commit 17542b0bf4

View File

@ -46,7 +46,7 @@ void logged_free(void *ptr) {
// Array
typedef struct {
int len;
size_t len;
void *data;
} Array;