diff options
author | Matt Kraai <kraai@debian.org> | 2000-07-14 01:51:25 +0000 |
---|---|---|
committer | Matt Kraai <kraai@debian.org> | 2000-07-14 01:51:25 +0000 |
commit | d537a95fdbc0b4a5f38edea8593b4c085fdd7fcb (patch) | |
tree | 62127f20fc07758e445d8c4e186306cbe83d77b1 /messages.c | |
parent | 4ac6cb534d78d63d7b0a206118c56bad7024b9f8 (diff) | |
download | busybox-w32-d537a95fdbc0b4a5f38edea8593b4c085fdd7fcb.tar.gz busybox-w32-d537a95fdbc0b4a5f38edea8593b4c085fdd7fcb.tar.bz2 busybox-w32-d537a95fdbc0b4a5f38edea8593b4c085fdd7fcb.zip |
Use errorMsg rather than fprintf.
Diffstat (limited to 'messages.c')
-rw-r--r-- | messages.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/messages.c b/messages.c index f2374eeb5..428db9eaa 100644 --- a/messages.c +++ b/messages.c | |||
@@ -48,13 +48,13 @@ | |||
48 | 48 | ||
49 | 49 | ||
50 | #if defined bb_need_name_too_long || ! defined BB_DECLARE_EXTERN | 50 | #if defined bb_need_name_too_long || ! defined BB_DECLARE_EXTERN |
51 | BB_DEF_MESSAGE(name_too_long, "%s: file name too long\n") | 51 | BB_DEF_MESSAGE(name_too_long, "file name too long\n") |
52 | #endif | 52 | #endif |
53 | #if defined bb_need_omitting_directory || ! defined BB_DECLARE_EXTERN | 53 | #if defined bb_need_omitting_directory || ! defined BB_DECLARE_EXTERN |
54 | BB_DEF_MESSAGE(omitting_directory, "%s: %s: omitting directory\n") | 54 | BB_DEF_MESSAGE(omitting_directory, "%s: omitting directory\n") |
55 | #endif | 55 | #endif |
56 | #if defined bb_need_not_a_directory || ! defined BB_DECLARE_EXTERN | 56 | #if defined bb_need_not_a_directory || ! defined BB_DECLARE_EXTERN |
57 | BB_DEF_MESSAGE(not_a_directory, "%s: %s: not a directory\n") | 57 | BB_DEF_MESSAGE(not_a_directory, "%s: not a directory\n") |
58 | #endif | 58 | #endif |
59 | #if defined bb_need_memory_exhausted || ! defined BB_DECLARE_EXTERN | 59 | #if defined bb_need_memory_exhausted || ! defined BB_DECLARE_EXTERN |
60 | BB_DEF_MESSAGE(memory_exhausted, "memory exhausted\n") | 60 | BB_DEF_MESSAGE(memory_exhausted, "memory exhausted\n") |
@@ -63,7 +63,7 @@ | |||
63 | BB_DEF_MESSAGE(invalid_date, "invalid date `%s'\n") | 63 | BB_DEF_MESSAGE(invalid_date, "invalid date `%s'\n") |
64 | #endif | 64 | #endif |
65 | #if defined bb_need_invalid_option || ! defined BB_DECLARE_EXTERN | 65 | #if defined bb_need_invalid_option || ! defined BB_DECLARE_EXTERN |
66 | BB_DEF_MESSAGE(invalid_option, "%s: invalid option -- %c\n") | 66 | BB_DEF_MESSAGE(invalid_option, "invalid option -- %c\n") |
67 | #endif | 67 | #endif |
68 | #if defined bb_need_io_error || ! defined BB_DECLARE_EXTERN | 68 | #if defined bb_need_io_error || ! defined BB_DECLARE_EXTERN |
69 | BB_DEF_MESSAGE(io_error, "%s: input/output error -- %s\n") | 69 | BB_DEF_MESSAGE(io_error, "%s: input/output error -- %s\n") |
@@ -75,7 +75,7 @@ | |||
75 | BB_DEF_MESSAGE(write_error, "Write Error\n") | 75 | BB_DEF_MESSAGE(write_error, "Write Error\n") |
76 | #endif | 76 | #endif |
77 | #if defined bb_need_too_few_args || ! defined BB_DECLARE_EXTERN | 77 | #if defined bb_need_too_few_args || ! defined BB_DECLARE_EXTERN |
78 | BB_DEF_MESSAGE(too_few_args, "%s: too few arguments\n") | 78 | BB_DEF_MESSAGE(too_few_args, "too few arguments\n") |
79 | #endif | 79 | #endif |
80 | 80 | ||
81 | 81 | ||