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:
Rob Landley
2006-03-10 19:22:06 +00:00
parent dae6aa2859
commit bc68cd14cc
28 changed files with 243 additions and 193 deletions

View File

@@ -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)

View File

@@ -67,7 +67,7 @@ static const struct speed_map speeds[] = {
#endif
};
static const int NUM_SPEEDS = (sizeof(speeds) / sizeof(struct speed_map));
enum { NUM_SPEEDS = (sizeof(speeds) / sizeof(struct speed_map)) };
unsigned long bb_baud_to_value(speed_t speed)
{

View File

@@ -15,7 +15,7 @@
char *xreadlink(const char *path)
{
static const int GROWBY = 80; /* how large we will grow strings by */
enum { GROWBY = 80 }; /* how large we will grow strings by */
char *buf = NULL;
int bufsize = 0, readsize = 0;