diff options
Diffstat (limited to 'sort.c')
-rw-r--r-- | sort.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -84,7 +84,7 @@ static Line *line_newFromFile(FILE * src) | |||
84 | Line *self; | 84 | Line *self; |
85 | char *cstring = NULL; | 85 | char *cstring = NULL; |
86 | 86 | ||
87 | if ((cstring = cstring_lineFromFile(src))) { | 87 | if ((cstring = get_line_from_file(src))) { |
88 | self = line_alloc(); | 88 | self = line_alloc(); |
89 | if (self == NULL) { | 89 | if (self == NULL) { |
90 | return NULL; | 90 | return NULL; |
@@ -304,4 +304,4 @@ int sort_main(int argc, char **argv) | |||
304 | return(0); | 304 | return(0); |
305 | } | 305 | } |
306 | 306 | ||
307 | /* $Id: sort.c,v 1.17 2000/06/19 17:25:40 andersen Exp $ */ | 307 | /* $Id: sort.c,v 1.18 2000/06/28 22:15:26 markw Exp $ */ |