aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2002-07-11 11:11:56 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2002-07-11 11:11:56 +0000
commit9e8681df83a66124e2857d52595b0a99febadee5 (patch)
treeb516e1554a434ba539ed5318c0b3736940c1dd99 /shell
parent5891772708c56a5c2e4da0c5ed7128c2e08196f2 (diff)
downloadbusybox-w32-9e8681df83a66124e2857d52595b0a99febadee5.tar.gz
busybox-w32-9e8681df83a66124e2857d52595b0a99febadee5.tar.bz2
busybox-w32-9e8681df83a66124e2857d52595b0a99febadee5.zip
Fixup warnings and undefined operations that show up in gcc-3.1
-Erik git-svn-id: svn://busybox.net/trunk/busybox@5042 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'shell')
-rw-r--r--shell/ash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/ash.c b/shell/ash.c
index 3d7043c8f..64761b9aa 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -11129,7 +11129,7 @@ redirect(union node *redir, int flags)
11129{ 11129{
11130 union node *n; 11130 union node *n;
11131 struct redirtab *sv = NULL; 11131 struct redirtab *sv = NULL;
11132 int i; 11132 int i = EMPTY;
11133 int fd; 11133 int fd;
11134 int newfd; 11134 int newfd;
11135 int try; 11135 int try;
@@ -12440,7 +12440,7 @@ findvar(struct var **vpp, const char *name)
12440/* 12440/*
12441 * Copyright (c) 1999 Herbert Xu <herbert@debian.org> 12441 * Copyright (c) 1999 Herbert Xu <herbert@debian.org>
12442 * This file contains code for the times builtin. 12442 * This file contains code for the times builtin.
12443 * $Id: ash.c,v 1.54 2002/07/04 00:19:46 andersen Exp $ 12443 * $Id: ash.c,v 1.55 2002/07/11 11:11:51 andersen Exp $
12444 */ 12444 */
12445static int timescmd (int argc, char **argv) 12445static int timescmd (int argc, char **argv)
12446{ 12446{