aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-02-24 13:42:56 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-02-24 13:42:56 +0000
commitf34b190e329ae1bc5fca8a9597c0315b9be23dbf (patch)
treea137df2395b77e21753a893ad1e16bef8d109450 /shell
parent9c3e463e6fc2aa3958138ca29dce84164630e380 (diff)
downloadbusybox-w32-f34b190e329ae1bc5fca8a9597c0315b9be23dbf.tar.gz
busybox-w32-f34b190e329ae1bc5fca8a9597c0315b9be23dbf.tar.bz2
busybox-w32-f34b190e329ae1bc5fca8a9597c0315b9be23dbf.zip
ash: fix compile problems
git-svn-id: svn://busybox.net/trunk/busybox@17971 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'shell')
-rw-r--r--shell/ash.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c
index a7e282377..8e8577ad6 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -8099,6 +8099,9 @@ static int exportcmd(int, char **);
8099#if ENABLE_ASH_GETOPTS 8099#if ENABLE_ASH_GETOPTS
8100static int getoptscmd(int, char **); 8100static int getoptscmd(int, char **);
8101#endif 8101#endif
8102#if !ENABLE_FEATURE_SH_EXTRA_QUIET
8103static int helpcmd(int argc, char **argv);
8104#endif
8102#if ENABLE_ASH_MATH_SUPPORT 8105#if ENABLE_ASH_MATH_SUPPORT
8103static int letcmd(int, char **); 8106static int letcmd(int, char **);
8104#endif 8107#endif
@@ -11357,7 +11360,7 @@ helpcmd(int argc, char **argv)
11357 out1fmt("\nBuilt-in commands:\n-------------------\n"); 11360 out1fmt("\nBuilt-in commands:\n-------------------\n");
11358 for (col = 0, i = 0; i < NUMBUILTINS; i++) { 11361 for (col = 0, i = 0; i < NUMBUILTINS; i++) {
11359 col += out1fmt("%c%s", ((col == 0) ? '\t' : ' '), 11362 col += out1fmt("%c%s", ((col == 0) ? '\t' : ' '),
11360 builtincmd[i].name + 1); 11363 builtintab[i].name + 1);
11361 if (col > 60) { 11364 if (col > 60) {
11362 out1fmt("\n"); 11365 out1fmt("\n");
11363 col = 0; 11366 col = 0;