diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2016-03-30 16:20:28 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2016-03-30 16:20:28 +0200 |
commit | 066e76befe5d39fc3451846af94cbba96747186c (patch) | |
tree | f809b807a88c8a281c3cb02c7df2ab4c83b902cb /miscutils/flash_eraseall.c | |
parent | 76b680c7a8d5a99e46ab8d9cad49aed0cfc440a7 (diff) | |
download | busybox-w32-066e76befe5d39fc3451846af94cbba96747186c.tar.gz busybox-w32-066e76befe5d39fc3451846af94cbba96747186c.tar.bz2 busybox-w32-066e76befe5d39fc3451846af94cbba96747186c.zip |
Replace a few more bb_info_msg's by bb_error_msg or printf
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'miscutils/flash_eraseall.c')
-rw-r--r-- | miscutils/flash_eraseall.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/flash_eraseall.c b/miscutils/flash_eraseall.c index bf9b739a1..d95d214d9 100644 --- a/miscutils/flash_eraseall.c +++ b/miscutils/flash_eraseall.c | |||
@@ -147,7 +147,7 @@ int flash_eraseall_main(int argc UNUSED_PARAM, char **argv) | |||
147 | ret = ioctl(fd, MEMGETBADBLOCK, &offset); | 147 | ret = ioctl(fd, MEMGETBADBLOCK, &offset); |
148 | if (ret > 0) { | 148 | if (ret > 0) { |
149 | if (!(flags & OPTION_Q)) | 149 | if (!(flags & OPTION_Q)) |
150 | bb_info_msg("\nSkipping bad block at 0x%08x", erase.start); | 150 | printf("\nSkipping bad block at 0x%08x\n", erase.start); |
151 | continue; | 151 | continue; |
152 | } | 152 | } |
153 | if (ret < 0) { | 153 | if (ret < 0) { |