diff options
author | erik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-02-08 19:58:47 +0000 |
---|---|---|
committer | erik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-02-08 19:58:47 +0000 |
commit | a18125005d67c38a8ad7fb454571bb996664ad96 (patch) | |
tree | c90bda10731ad9333ce3b404f993354c9fc104b8 /messages.c | |
parent | 8ef3b44285a8ce5b83bed9cf32ce5f40b30ba72f (diff) | |
download | busybox-w32-a18125005d67c38a8ad7fb454571bb996664ad96.tar.gz busybox-w32-a18125005d67c38a8ad7fb454571bb996664ad96.tar.bz2 busybox-w32-a18125005d67c38a8ad7fb454571bb996664ad96.zip |
Some formatting updates (ran the code through indent)
-Erik
git-svn-id: svn://busybox.net/trunk/busybox@357 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'messages.c')
-rw-r--r-- | messages.c | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/messages.c b/messages.c index bfbf3175b..265c5ade8 100644 --- a/messages.c +++ b/messages.c | |||
@@ -1,3 +1,4 @@ | |||
1 | /* vi: set sw=4 ts=4: */ | ||
1 | /* | 2 | /* |
2 | * Copyright (C) 2000 by BitterSweet Enterprises, LLC. | 3 | * Copyright (C) 2000 by BitterSweet Enterprises, LLC. |
3 | * Written by Karl M. Hegbloom <karlheg@debian.org> | 4 | * Written by Karl M. Hegbloom <karlheg@debian.org> |
@@ -40,25 +41,19 @@ | |||
40 | #if defined bb_need_name_too_long || ! defined BB_DECLARE_EXTERN | 41 | #if defined bb_need_name_too_long || ! defined BB_DECLARE_EXTERN |
41 | BB_DEF_MESSAGE(name_too_long, "%s: file name too long\n") | 42 | BB_DEF_MESSAGE(name_too_long, "%s: file name too long\n") |
42 | #endif | 43 | #endif |
43 | |||
44 | #if defined bb_need_omitting_directory || ! defined BB_DECLARE_EXTERN | 44 | #if defined bb_need_omitting_directory || ! defined BB_DECLARE_EXTERN |
45 | BB_DEF_MESSAGE(omitting_directory, "%s: %s: omitting directory\n") | 45 | BB_DEF_MESSAGE(omitting_directory, "%s: %s: omitting directory\n") |
46 | #endif | 46 | #endif |
47 | |||
48 | #if defined bb_need_not_a_directory || ! defined BB_DECLARE_EXTERN | 47 | #if defined bb_need_not_a_directory || ! defined BB_DECLARE_EXTERN |
49 | BB_DEF_MESSAGE(not_a_directory, "%s: %s: not a directory\n") | 48 | BB_DEF_MESSAGE(not_a_directory, "%s: %s: not a directory\n") |
50 | #endif | 49 | #endif |
51 | |||
52 | #if defined bb_need_memory_exhausted || ! defined BB_DECLARE_EXTERN | 50 | #if defined bb_need_memory_exhausted || ! defined BB_DECLARE_EXTERN |
53 | BB_DEF_MESSAGE(memory_exhausted, "%s: memory exhausted\n") | 51 | BB_DEF_MESSAGE(memory_exhausted, "%s: memory exhausted\n") |
54 | #endif | 52 | #endif |
55 | |||
56 | #if defined bb_need_invalid_date || ! defined BB_DECLARE_EXTERN | 53 | #if defined bb_need_invalid_date || ! defined BB_DECLARE_EXTERN |
57 | BB_DEF_MESSAGE(invalid_date, "%s: invalid date `%s'\n") | 54 | BB_DEF_MESSAGE(invalid_date, "%s: invalid date `%s'\n") |
58 | #endif | 55 | #endif |
59 | |||
60 | #if defined bb_need_invalid_option || ! defined BB_DECLARE_EXTERN | 56 | #if defined bb_need_invalid_option || ! defined BB_DECLARE_EXTERN |
61 | BB_DEF_MESSAGE(invalid_option, "%s: invalid option -- %c\n") | 57 | BB_DEF_MESSAGE(invalid_option, "%s: invalid option -- %c\n") |
62 | #endif | 58 | #endif |
63 | 59 | #endif /* _BB_MESSAGES_C */ | |
64 | #endif /* _BB_MESSAGES_C */ | ||