diff options
author | Denis Vlasenko | 2008-03-26 20:04:27 +0000 |
---|---|---|
committer | Denis Vlasenko | 2008-03-26 20:04:27 +0000 |
commit | 8ee649a02e97e9d4e770a8138ba94c0f3ddd8055 (patch) | |
tree | cf13ce448542a36595264ad53397a0633ffedcc8 /editors/sed.c | |
parent | ce7eb4443cc90038aabc19a8b7b8f25e4b88892e (diff) | |
download | busybox-8ee649a02e97e9d4e770a8138ba94c0f3ddd8055.zip busybox-8ee649a02e97e9d4e770a8138ba94c0f3ddd8055.tar.gz |
*: more uniform naming: s/xmalloc_getline/xmalloc_fgetline/
Diffstat (limited to 'editors/sed.c')
-rw-r--r-- | editors/sed.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editors/sed.c b/editors/sed.c index 32911f8..f858845 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); } |