diff options
Diffstat (limited to 'miscutils')
-rw-r--r-- | miscutils/devfsd.c | 2 | ||||
-rw-r--r-- | miscutils/flash_eraseall.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/miscutils/devfsd.c b/miscutils/devfsd.c index 9256567cc..6217918da 100644 --- a/miscutils/devfsd.c +++ b/miscutils/devfsd.c | |||
@@ -284,7 +284,7 @@ static const char bb_msg_variable_not_found[] ALIGN1 = "variable: %s not found"; | |||
284 | 284 | ||
285 | /* Busybox stuff */ | 285 | /* Busybox stuff */ |
286 | #if ENABLE_DEVFSD_VERBOSE || ENABLE_DEBUG | 286 | #if ENABLE_DEVFSD_VERBOSE || ENABLE_DEBUG |
287 | #define info_logger(p, fmt, args...) bb_info_msg(fmt, ## args) | 287 | #define info_logger(p, fmt, args...) bb_error_msg(fmt, ## args) |
288 | #define msg_logger(p, fmt, args...) bb_error_msg(fmt, ## args) | 288 | #define msg_logger(p, fmt, args...) bb_error_msg(fmt, ## args) |
289 | #define msg_logger_and_die(p, fmt, args...) bb_error_msg_and_die(fmt, ## args) | 289 | #define msg_logger_and_die(p, fmt, args...) bb_error_msg_and_die(fmt, ## args) |
290 | #define error_logger(p, fmt, args...) bb_perror_msg(fmt, ## args) | 290 | #define error_logger(p, fmt, args...) bb_perror_msg(fmt, ## args) |
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) { |