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 /deallocvt.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 'deallocvt.c')
-rw-r--r-- | deallocvt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deallocvt.c b/deallocvt.c index 3dd90c0e9..fad7a2bb2 100644 --- a/deallocvt.c +++ b/deallocvt.c | |||
@@ -11,7 +11,7 @@ | |||
11 | #include <sys/ioctl.h> | 11 | #include <sys/ioctl.h> |
12 | 12 | ||
13 | /* From <linux/vt.h> */ | 13 | /* From <linux/vt.h> */ |
14 | #define VT_DISALLOCATE 0x5608 /* free memory associated to vt */ | 14 | static const int VT_DISALLOCATE = 0x5608; /* free memory associated to vt */ |
15 | 15 | ||
16 | int deallocvt_main(int argc, char *argv[]) | 16 | int deallocvt_main(int argc, char *argv[]) |
17 | { | 17 | { |