Fixes compile warningj
This commit is contained in:
parent
8f5ace5796
commit
cf0a50dcf0
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue