aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-01-22 14:12:08 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-01-22 14:12:08 +0000
commit23e7364394c4c9442a452d0d9b63a66f7bfc3a98 (patch)
tree49e8451efad93b75c0be74ee553d3b3f8c04a25d /shell
parent0e1d6a3192da08aac94b5382fc8f738dde35a770 (diff)
downloadbusybox-w32-23e7364394c4c9442a452d0d9b63a66f7bfc3a98.tar.gz
busybox-w32-23e7364394c4c9442a452d0d9b63a66f7bfc3a98.tar.bz2
busybox-w32-23e7364394c4c9442a452d0d9b63a66f7bfc3a98.zip
cleanups: unnecessary casts, unified const_1, eliminate cross-.c file
prototypes (heresy!), add spaces in places like "flags&NETSTAT_CONNECTED", removed unused #defines, #ifdef -> #if, use uint32_t for ipv4 addrs. git-svn-id: svn://busybox.net/trunk/busybox@17461 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'shell')
-rw-r--r--shell/lash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/lash.c b/shell/lash.c
index 4ea4e6763..90bd16885 100644
--- a/shell/lash.c
+++ b/shell/lash.c
@@ -30,7 +30,7 @@
30#define CONFIG_LASH_PIPE_N_REDIRECTS 30#define CONFIG_LASH_PIPE_N_REDIRECTS
31#define CONFIG_LASH_JOB_CONTROL 31#define CONFIG_LASH_JOB_CONTROL
32 32
33static const int MAX_READ = 128; /* size of input buffer for `read' builtin */ 33enum { MAX_READ = 128 }; /* size of input buffer for 'read' builtin */
34#define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n" 34#define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n"
35 35
36 36