Patch from Denis Vlasenko turning static const int (which gets emitted into
the busybox binary) into enums (which don't).
This commit is contained in:
@@ -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)
|
||||
|
Reference in New Issue
Block a user