diff options
Diffstat (limited to 'libbb/get_console.c')
-rw-r--r-- | libbb/get_console.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/get_console.c b/libbb/get_console.c index bfb7468..a5903d0 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) |