aboutsummaryrefslogtreecommitdiff
path: root/shell/cmdedit.c
diff options
context:
space:
mode:
authorlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-08-29 19:41:06 +0000
committerlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-08-29 19:41:06 +0000
commit599e554aad2738efe2fa7948c28162b0f7323a63 (patch)
treec0398d52bf44783d2dc330b4b33a908a58d2d55b /shell/cmdedit.c
parentad8f6a3513f8b54f4e80adfcc22cab37dce40a2b (diff)
downloadbusybox-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.c4
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
250static inline void out1str(const char *s) 250static 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
256static inline void beep(void) 256static void beep(void)
257{ 257{
258 putchar('\007'); 258 putchar('\007');
259} 259}