diff options
author | Mark Whitley <markw@lineo.com> | 2001-01-23 22:30:04 +0000 |
---|---|---|
committer | Mark Whitley <markw@lineo.com> | 2001-01-23 22:30:04 +0000 |
commit | 59ab025363d884deb2013dcaae6c968585a6ec72 (patch) | |
tree | 852d97bdc34c44dbcf29cc8b5cd9257a8c90f7b3 /procps/ps.c | |
parent | 2b8d07c590249991fae975652aae86f5fca91f81 (diff) | |
download | busybox-w32-59ab025363d884deb2013dcaae6c968585a6ec72.tar.gz busybox-w32-59ab025363d884deb2013dcaae6c968585a6ec72.tar.bz2 busybox-w32-59ab025363d884deb2013dcaae6c968585a6ec72.zip |
#define -> static const int. Also got rid of some big static buffers.
Diffstat (limited to 'procps/ps.c')
-rw-r--r-- | procps/ps.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/procps/ps.c b/procps/ps.c index ec63bb548..cb4c21e32 100644 --- a/procps/ps.c +++ b/procps/ps.c | |||
@@ -40,7 +40,7 @@ | |||
40 | #define bb_need_help | 40 | #define bb_need_help |
41 | #include "messages.c" | 41 | #include "messages.c" |
42 | 42 | ||
43 | #define TERMINAL_WIDTH 79 /* not 80 in case terminal has linefold bug */ | 43 | static const int TERMINAL_WIDTH = 79; /* not 80 in case terminal has linefold bug */ |
44 | 44 | ||
45 | 45 | ||
46 | 46 | ||