aboutsummaryrefslogtreecommitdiff
path: root/shell/hush.c
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-12-26 10:42:51 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-12-26 10:42:51 +0000
commit52f326a239527e7242321661d2ba06b50daa3c43 (patch)
treeaf74820b70fa27929fe218c95822c20651b60637 /shell/hush.c
parentda5e86c349488f3ea31718b149ce9f0d1493b64b (diff)
downloadbusybox-w32-52f326a239527e7242321661d2ba06b50daa3c43.tar.gz
busybox-w32-52f326a239527e7242321661d2ba06b50daa3c43.tar.bz2
busybox-w32-52f326a239527e7242321661d2ba06b50daa3c43.zip
style fixes
last xcalloc replaced by xzalloc git-svn-id: svn://busybox.net/trunk/busybox@17081 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'shell/hush.c')
-rw-r--r--shell/hush.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/hush.c b/shell/hush.c
index a6e029e4e..9bc0013d7 100644
--- a/shell/hush.c
+++ b/shell/hush.c
@@ -2269,7 +2269,7 @@ static int parse_group(o_string *dest, struct p_context *ctx,
2269 return 1; /* syntax error, groups and arglists don't mix */ 2269 return 1; /* syntax error, groups and arglists don't mix */
2270 } 2270 }
2271 initialize_context(&sub); 2271 initialize_context(&sub);
2272 switch(ch) { 2272 switch (ch) {
2273 case '(': endch=')'; child->subshell=1; break; 2273 case '(': endch=')'; child->subshell=1; break;
2274 case '{': endch='}'; break; 2274 case '{': endch='}'; break;
2275 default: syntax(); /* really logic error */ 2275 default: syntax(); /* really logic error */