diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-27 16:59:15 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-27 16:59:15 +0000 |
commit | 097c324f59e00182c9a2ca9e7a8b2fe06a078c6c (patch) | |
tree | 4817bcd854907cb2cd905780e54ea24faf1c80c5 /shell/lash.c | |
parent | d9e15f206840219bb0f39c912a42fdcf8cbcaed6 (diff) | |
download | busybox-w32-097c324f59e00182c9a2ca9e7a8b2fe06a078c6c.tar.gz busybox-w32-097c324f59e00182c9a2ca9e7a8b2fe06a078c6c.tar.bz2 busybox-w32-097c324f59e00182c9a2ca9e7a8b2fe06a078c6c.zip |
fix remaining survivors of the return(a) cleanup
Diffstat (limited to 'shell/lash.c')
-rw-r--r-- | shell/lash.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/shell/lash.c b/shell/lash.c index 472cbddb9..3b51e98a9 100644 --- a/shell/lash.c +++ b/shell/lash.c | |||
@@ -380,7 +380,7 @@ static int builtin_export(struct child_prog *child) | |||
380 | setlocale(LC_CTYPE, getenv("LC_CTYPE")); | 380 | setlocale(LC_CTYPE, getenv("LC_CTYPE")); |
381 | #endif | 381 | #endif |
382 | 382 | ||
383 | return (res); | 383 | return res; |
384 | } | 384 | } |
385 | 385 | ||
386 | /* built-in 'read VAR' handler */ | 386 | /* built-in 'read VAR' handler */ |
@@ -414,7 +414,7 @@ static int builtin_read(struct child_prog *child) | |||
414 | else | 414 | else |
415 | fgets(string, sizeof(string), stdin); | 415 | fgets(string, sizeof(string), stdin); |
416 | 416 | ||
417 | return (res); | 417 | return res; |
418 | } | 418 | } |
419 | 419 | ||
420 | /* Built-in '.' handler (read-in and execute commands from file) */ | 420 | /* Built-in '.' handler (read-in and execute commands from file) */ |
@@ -433,7 +433,7 @@ static int builtin_source(struct child_prog *child) | |||
433 | status = busy_loop(input); | 433 | status = busy_loop(input); |
434 | fclose(input); | 434 | fclose(input); |
435 | llist_pop(&close_me_list); | 435 | llist_pop(&close_me_list); |
436 | return (status); | 436 | return status; |
437 | } | 437 | } |
438 | 438 | ||
439 | /* built-in 'unset VAR' handler */ | 439 | /* built-in 'unset VAR' handler */ |