diff options
Diffstat (limited to 'functions.c')
-rw-r--r-- | functions.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functions.c b/functions.c index e7a8ad6..84cf0cb 100644 --- a/functions.c +++ b/functions.c @@ -108,7 +108,7 @@ void shuffle(char arr[], int n) { } } -int get_line(char filename[], long focus, char **line, size_t *start) { +int get_line(char *filename, long focus, char **line, size_t *start) { FILE *file; file = fopen(filename,"r"); // Open file |