diff options
author | Matt Kraai | 2000-07-14 01:51:25 +0000 |
---|---|---|
committer | Matt Kraai | 2000-07-14 01:51:25 +0000 |
commit | d537a95fdbc0b4a5f38edea8593b4c085fdd7fcb (patch) | |
tree | 62127f20fc07758e445d8c4e186306cbe83d77b1 /messages.c | |
parent | 4ac6cb534d78d63d7b0a206118c56bad7024b9f8 (diff) | |
download | busybox-d537a95fdbc0b4a5f38edea8593b4c085fdd7fcb.zip busybox-d537a95fdbc0b4a5f38edea8593b4c085fdd7fcb.tar.gz |
Use errorMsg rather than fprintf.
Diffstat (limited to 'messages.c')
-rw-r--r-- | messages.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -48,13 +48,13 @@ #if defined bb_need_name_too_long || ! defined BB_DECLARE_EXTERN - BB_DEF_MESSAGE(name_too_long, "%s: file name too long\n") + BB_DEF_MESSAGE(name_too_long, "file name too long\n") #endif #if defined bb_need_omitting_directory || ! defined BB_DECLARE_EXTERN - BB_DEF_MESSAGE(omitting_directory, "%s: %s: omitting directory\n") + BB_DEF_MESSAGE(omitting_directory, "%s: omitting directory\n") #endif #if defined bb_need_not_a_directory || ! defined BB_DECLARE_EXTERN - BB_DEF_MESSAGE(not_a_directory, "%s: %s: not a directory\n") + BB_DEF_MESSAGE(not_a_directory, "%s: not a directory\n") #endif #if defined bb_need_memory_exhausted || ! defined BB_DECLARE_EXTERN BB_DEF_MESSAGE(memory_exhausted, "memory exhausted\n") @@ -63,7 +63,7 @@ BB_DEF_MESSAGE(invalid_date, "invalid date `%s'\n") #endif #if defined bb_need_invalid_option || ! defined BB_DECLARE_EXTERN - BB_DEF_MESSAGE(invalid_option, "%s: invalid option -- %c\n") + BB_DEF_MESSAGE(invalid_option, "invalid option -- %c\n") #endif #if defined bb_need_io_error || ! defined BB_DECLARE_EXTERN BB_DEF_MESSAGE(io_error, "%s: input/output error -- %s\n") @@ -75,7 +75,7 @@ BB_DEF_MESSAGE(write_error, "Write Error\n") #endif #if defined bb_need_too_few_args || ! defined BB_DECLARE_EXTERN - BB_DEF_MESSAGE(too_few_args, "%s: too few arguments\n") + BB_DEF_MESSAGE(too_few_args, "too few arguments\n") #endif |