diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-09-06 19:02:46 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-09-06 19:02:46 +0000 |
commit | 6d655be5df5a559253a3769f294a6255535ad3fd (patch) | |
tree | 4342fd4f88b84459ef5c2c2c2c6fb86863a7112f /miscutils/makedevs.c | |
parent | 3538b9a8822421b7c8596a33a917dcf2f99c92b7 (diff) | |
download | busybox-w32-6d655be5df5a559253a3769f294a6255535ad3fd.tar.gz busybox-w32-6d655be5df5a559253a3769f294a6255535ad3fd.tar.bz2 busybox-w32-6d655be5df5a559253a3769f294a6255535ad3fd.zip |
removed a lot of trailing \n in bb_msg() calls. It is added
automatically by function itself.
Diffstat (limited to 'miscutils/makedevs.c')
-rw-r--r-- | miscutils/makedevs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/makedevs.c b/miscutils/makedevs.c index 70dfc4205..66b4ce00d 100644 --- a/miscutils/makedevs.c +++ b/miscutils/makedevs.c | |||
@@ -119,7 +119,7 @@ int makedevs_main(int argc, char **argv) | |||
119 | { | 119 | { |
120 | if (*line=='\0' || *line=='#' || isspace(*line)) | 120 | if (*line=='\0' || *line=='#' || isspace(*line)) |
121 | continue; | 121 | continue; |
122 | bb_error_msg("line %d invalid: '%s'\n", linenum, line); | 122 | bb_error_msg("line %d invalid: '%s'", linenum, line); |
123 | ret = EXIT_FAILURE; | 123 | ret = EXIT_FAILURE; |
124 | continue; | 124 | continue; |
125 | } | 125 | } |