aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-12-21 11:22:26 +0000
committerEric Andersen <andersen@codepoet.org>2001-12-21 11:22:26 +0000
commitceef50b280dda5c75175ba5728dfa5dacbce6ff2 (patch)
tree9fa7a584de9f908318d12e59c48163dcaacc69b5 /shell
parentf1f2bd0b0a244afc07cfd602a6357efaebf844e3 (diff)
downloadbusybox-ceef50b280dda5c75175ba5728dfa5dacbce6ff2.tar.gz
Patch from vodz to fix broken function prototype
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 177ec1c26..522a11d20 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -5214,7 +5214,7 @@ static char *expdir;
static void
-expandmeta(struct strlist str, int flag)
+expandmeta(struct strlist *str, int flag)
{
char *p;
struct strlist **savelastp;
@@ -12481,7 +12481,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.38 2001/12/20 23:13:19 kraai Exp $
+ * $Id: ash.c,v 1.39 2001/12/21 11:22:26 andersen Exp $
*/
static int timescmd (int argc, char **argv)
{