aboutsummaryrefslogtreecommitdiff
path: root/console-tools/deallocvt.c
diff options
context:
space:
mode:
authorlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-03-10 19:22:06 +0000
committerlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-03-10 19:22:06 +0000
commit07ea853040a1240d40fefe5bb871a5c3c98c77a6 (patch)
treebeb32cedafc6232bf8a49fe90f0769d471ea6791 /console-tools/deallocvt.c
parent8ee3984df387bf31ba1d652a861d7fedbac7bfa8 (diff)
downloadbusybox-w32-07ea853040a1240d40fefe5bb871a5c3c98c77a6.tar.gz
busybox-w32-07ea853040a1240d40fefe5bb871a5c3c98c77a6.tar.bz2
busybox-w32-07ea853040a1240d40fefe5bb871a5c3c98c77a6.zip
Patch from Denis Vlasenko turning static const int (which gets emitted into
the busybox binary) into enums (which don't). git-svn-id: svn://busybox.net/trunk/busybox@14513 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'console-tools/deallocvt.c')
-rw-r--r--console-tools/deallocvt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/console-tools/deallocvt.c b/console-tools/deallocvt.c
index 00ddf4236..ad3cebfef 100644
--- a/console-tools/deallocvt.c
+++ b/console-tools/deallocvt.c
@@ -30,7 +30,7 @@
30#include "busybox.h" 30#include "busybox.h"
31 31
32/* From <linux/vt.h> */ 32/* From <linux/vt.h> */
33static const int VT_DISALLOCATE = 0x5608; /* free memory associated to vt */ 33enum { VT_DISALLOCATE = 0x5608 }; /* free memory associated to vt */
34 34
35int deallocvt_main(int argc, char *argv[]) 35int deallocvt_main(int argc, char *argv[])
36{ 36{