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 /shell/cmdedit.c | |
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 'shell/cmdedit.c')
-rw-r--r-- | shell/cmdedit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/cmdedit.c b/shell/cmdedit.c index 03aaa3b2e..fb1946e83 100644 --- a/shell/cmdedit.c +++ b/shell/cmdedit.c | |||
@@ -247,13 +247,13 @@ static void goto_new_line(void) | |||
247 | } | 247 | } |
248 | 248 | ||
249 | 249 | ||
250 | static inline void out1str(const char *s) | 250 | static void out1str(const char *s) |
251 | { | 251 | { |
252 | if ( s ) | 252 | if ( s ) |
253 | fputs(s, stdout); | 253 | fputs(s, stdout); |
254 | } | 254 | } |
255 | 255 | ||
256 | static inline void beep(void) | 256 | static void beep(void) |
257 | { | 257 | { |
258 | putchar('\007'); | 258 | putchar('\007'); |
259 | } | 259 | } |