From 8ee649a02e97e9d4e770a8138ba94c0f3ddd8055 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Wed, 26 Mar 2008 20:04:27 +0000 Subject: *: more uniform naming: s/xmalloc_getline/xmalloc_fgetline/ --- editors/sed.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'editors/sed.c') diff --git a/editors/sed.c b/editors/sed.c index 32911f8f9..f85884534 100644 --- a/editors/sed.c +++ b/editors/sed.c @@ -1028,7 +1028,7 @@ static void process_files(void) if (rfile) { char *line; - while ((line = xmalloc_getline(rfile)) + while ((line = xmalloc_fgetline(rfile)) != NULL) append(line); xprint_and_close_file(rfile); @@ -1273,7 +1273,7 @@ int sed_main(int argc ATTRIBUTE_UNUSED, char **argv) char *line; FILE *cmdfile; cmdfile = xfopen(opt_f->data, "r"); - while ((line = xmalloc_getline(cmdfile)) != NULL) { + while ((line = xmalloc_fgetline(cmdfile)) != NULL) { add_cmd(line); free(line); } -- cgit v1.2.3