aboutsummaryrefslogtreecommitdiff
path: root/sort.c
diff options
context:
space:
mode:
Diffstat (limited to 'sort.c')
-rw-r--r--sort.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sort.c b/sort.c
index 93062faa4..a28122d51 100644
--- a/sort.c
+++ b/sort.c
@@ -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 $ */