diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-01-22 14:12:08 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-01-22 14:12:08 +0000 |
commit | 23e7364394c4c9442a452d0d9b63a66f7bfc3a98 (patch) | |
tree | 49e8451efad93b75c0be74ee553d3b3f8c04a25d /shell | |
parent | 0e1d6a3192da08aac94b5382fc8f738dde35a770 (diff) | |
download | busybox-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.c | 2 |
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 | ||
33 | static const int MAX_READ = 128; /* size of input buffer for `read' builtin */ | 33 | enum { 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 | ||