diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-10-01 12:05:12 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-10-01 12:05:12 +0000 |
commit | feb7ae7f01e13dce31118e5a58b09b237d25e58c (patch) | |
tree | b36f1a78441f586aa8bf5a2c8b055296d30c2777 /libbb/lineedit.c | |
parent | 0c97c9d43707da745fe2bc62ab2a69497ceaf666 (diff) | |
download | busybox-w32-feb7ae7f01e13dce31118e5a58b09b237d25e58c.tar.gz busybox-w32-feb7ae7f01e13dce31118e5a58b09b237d25e58c.tar.bz2 busybox-w32-feb7ae7f01e13dce31118e5a58b09b237d25e58c.zip |
printf("%s\n") -> puts()
Diffstat (limited to 'libbb/lineedit.c')
-rw-r--r-- | libbb/lineedit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/lineedit.c b/libbb/lineedit.c index 26a49a1c3..ccf8ac52d 100644 --- a/libbb/lineedit.c +++ b/libbb/lineedit.c | |||
@@ -700,7 +700,7 @@ static void showfiles(void) | |||
700 | printf("%s%-*s", matches[n], | 700 | printf("%s%-*s", matches[n], |
701 | (int)(column_width - strlen(matches[n])), ""); | 701 | (int)(column_width - strlen(matches[n])), ""); |
702 | } | 702 | } |
703 | printf("%s\n", matches[n]); | 703 | puts(matches[n]); |
704 | } | 704 | } |
705 | } | 705 | } |
706 | 706 | ||