diff options
author | Mark Whitley <markw@lineo.com> | 2000-07-10 19:31:31 +0000 |
---|---|---|
committer | Mark Whitley <markw@lineo.com> | 2000-07-10 19:31:31 +0000 |
commit | 9a8243aa1e8a8c7f34404401a1b23e6bb27a49bb (patch) | |
tree | ac333e017212807aecfb4d42f3cf9fdd1fab63ff /utility.c | |
parent | 928faac50328e4e2f4e42e041ba3f1f4568365bd (diff) |
Put the GROWBY variable inside the get_line_from_file function, as that is the
only function where it's used and it's always good to keep the namespace
clean. :-)
Diffstat (limited to 'utility.c')
-rw-r--r-- | utility.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1599,13 +1599,14 @@ extern int find_real_root_device_name(char* name) } #endif -static const int GROWBY = 80; /* how large we will grow strings by */ /* get_line_from_file() - This function reads an entire line from a text file * up to a newline. It returns a malloc'ed char * which must be stored and * free'ed by the caller. */ extern char *get_line_from_file(FILE *file) { + static const int GROWBY = 80; /* how large we will grow strings by */ + int ch; int idx = 0; char *linebuf = NULL; |