whitespace fixes

This commit is contained in:
Denis Vlasenko
2008-07-12 23:02:43 +00:00
parent a8374a1916
commit 52ec4b98d5
3 changed files with 18 additions and 8 deletions

View File

@@ -1169,7 +1169,7 @@ static char **create_list(const char *filename)
file_list = NULL;
count = 0;
while ((line = xmalloc_fgetline(list_stream)) != NULL) {
//TODO: zeroing xrealloc_vector?
//TODO: zeroing xrealloc_vector?
file_list = xrealloc_vector(file_list, 2, count);
file_list[count++] = line;
file_list[count] = NULL;