Small spacing change for format consistency

This commit is contained in:
Aaron Helton
2019-10-17 19:07:24 -04:00
parent e1a79cd536
commit 33e789f235

View File

@@ -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);
}