From 33e789f235939d1615bba76ba0d4e57836b6ffd3 Mon Sep 17 00:00:00 2001 From: Aaron Helton Date: Thu, 17 Oct 2019 19:07:24 -0400 Subject: [PATCH] Small spacing change for format consistency --- src/file_io.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/file_io.c b/src/file_io.c index f80626c..8e59124 100644 --- a/src/file_io.c +++ b/src/file_io.c @@ -18,7 +18,7 @@ char *read_line(FILE *file, int *eof_reached) MAX_STR_SIZE); exit(2); } - lineBuffer[count] = (char)ch; + lineBuffer[count] = (char) ch; count++; ch = getc(file); }