Fixes compile warningj

This commit is contained in:
stitchy 2023-10-16 13:21:11 -07:00
parent 8f5ace5796
commit cf0a50dcf0
Signed by: stitchy
SSH key fingerprint: SHA256:yz2SoxdnY67tfY5Jzb0f2v8f5W3o/IF359kbcquWip8
2 changed files with 2 additions and 2 deletions

View file

@ -12,7 +12,7 @@ struct node* parse_csv(char* name) {
// Buffer File For chars
char* buffer;
size_t buff_size = 1000;
size_t chars = -2;
ssize_t chars = -2;
buffer = malloc(buff_size * sizeof(char));
// Deal with Top of CSV

View file

@ -1,4 +1,4 @@
CC=gcc --std=c99 -g
CC=gcc --std=gnu99 -g
output=movies
all: movies.c csv_parser.o node.o input.o