From 9e8681df83a66124e2857d52595b0a99febadee5 Mon Sep 17 00:00:00 2001 From: andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> Date: Thu, 11 Jul 2002 11:11:56 +0000 Subject: 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 --- shell/ash.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'shell') 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) { union node *n; struct redirtab *sv = NULL; - int i; + int i = EMPTY; int fd; int newfd; int try; @@ -12440,7 +12440,7 @@ findvar(struct var **vpp, const char *name) /* * Copyright (c) 1999 Herbert Xu <herbert@debian.org> * This file contains code for the times builtin. - * $Id: ash.c,v 1.54 2002/07/04 00:19:46 andersen Exp $ + * $Id: ash.c,v 1.55 2002/07/11 11:11:51 andersen Exp $ */ static int timescmd (int argc, char **argv) { -- cgit v1.2.3-55-g6feb