diff options
author | kraai <kraai@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-07-14 01:51:25 +0000 |
---|---|---|
committer | kraai <kraai@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-07-14 01:51:25 +0000 |
commit | ed2dfb60ee4a99850e9e68fb27512a0bab4ba992 (patch) | |
tree | 62127f20fc07758e445d8c4e186306cbe83d77b1 /messages.c | |
parent | f35f4340a4f7ae02b1139ac9f303e5b8081d71e9 (diff) | |
download | busybox-w32-ed2dfb60ee4a99850e9e68fb27512a0bab4ba992.tar.gz busybox-w32-ed2dfb60ee4a99850e9e68fb27512a0bab4ba992.tar.bz2 busybox-w32-ed2dfb60ee4a99850e9e68fb27512a0bab4ba992.zip |
Use errorMsg rather than fprintf.
git-svn-id: svn://busybox.net/trunk/busybox@848 69ca8d6d-28ef-0310-b511-8ec308f3f277
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 | ||