diff options
author | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-08-29 19:41:06 +0000 |
---|---|---|
committer | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-08-29 19:41:06 +0000 |
commit | 599e554aad2738efe2fa7948c28162b0f7323a63 (patch) | |
tree | c0398d52bf44783d2dc330b4b33a908a58d2d55b /init | |
parent | ad8f6a3513f8b54f4e80adfcc22cab37dce40a2b (diff) | |
download | busybox-w32-599e554aad2738efe2fa7948c28162b0f7323a63.tar.gz busybox-w32-599e554aad2738efe2fa7948c28162b0f7323a63.tar.bz2 busybox-w32-599e554aad2738efe2fa7948c28162b0f7323a63.zip |
Svn 16007 broke the build under gcc 4.0.3. This fixes up some of the damage
(the e2fsprogs directory is too twisty and evil to easily fix, but I plan
to rewrite it anyway so I'll just bump that up in priority a bit).
git-svn-id: svn://busybox.net/trunk/busybox@16015 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'init')
-rw-r--r-- | init/init.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/init/init.c b/init/init.c index cad64f63a..607a1f3e0 100644 --- a/init/init.c +++ b/init/init.c | |||
@@ -173,10 +173,7 @@ static void loop_forever(void) | |||
173 | #if ENABLE_DEBUG_INIT | 173 | #if ENABLE_DEBUG_INIT |
174 | #define messageD message | 174 | #define messageD message |
175 | #else | 175 | #else |
176 | static inline void messageD(int ATTRIBUTE_UNUSED device, | 176 | #define messageD(...) do {;} while(0); |
177 | const char ATTRIBUTE_UNUSED *fmt, ...) | ||
178 | { | ||
179 | } | ||
180 | #endif | 177 | #endif |
181 | static void message(int device, const char *fmt, ...) | 178 | static void message(int device, const char *fmt, ...) |
182 | __attribute__ ((format(printf, 2, 3))); | 179 | __attribute__ ((format(printf, 2, 3))); |