Put the GROWBY variable inside the get_line_from_file function, as that is the
authorMark Whitley <markw@lineo.com>
Mon, 10 Jul 2000 19:31:31 +0000 (19:31 -0000)
committerMark Whitley <markw@lineo.com>
Mon, 10 Jul 2000 19:31:31 +0000 (19:31 -0000)
only function where it's used and it's always good to keep the namespace
clean. :-)

utility.c

index a313078cfd49c1cbdb22809060012d072291677e..97e0366ad3f3cb5c8a2818ca946457db545ae69f 100644 (file)
--- a/utility.c
+++ b/utility.c
@@ -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;