Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2006-03-10 22:22:06 +0300
committerRob Landley <rob@landley.net>2006-03-10 22:22:06 +0300
commitbc68cd14ccaebc17e7e03a08e51fddfb91007624 (patch)
treebeb32cedafc6232bf8a49fe90f0769d471ea6791 /libbb/get_console.c
parentdae6aa28598cb2353291f18ca52e768c3259165a (diff)
Patch from Denis Vlasenko turning static const int (which gets emitted into
the busybox binary) into enums (which don't).
Diffstat (limited to 'libbb/get_console.c')
-rw-r--r--libbb/get_console.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/get_console.c b/libbb/get_console.c
index bfb7468a8..a5903d0c3 100644
--- a/libbb/get_console.c
+++ b/libbb/get_console.c
@@ -30,7 +30,7 @@
/* From <linux/kd.h> */
-static const int KDGKBTYPE = 0x4B33; /* get keyboard type */
+enum { KDGKBTYPE = 0x4B33 }; /* get keyboard type */
static int open_a_console(const char *fnam)