From bc68cd14ccaebc17e7e03a08e51fddfb91007624 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Fri, 10 Mar 2006 19:22:06 +0000 Subject: Patch from Denis Vlasenko turning static const int (which gets emitted into the busybox binary) into enums (which don't). --- libbb/speed_table.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libbb/speed_table.c') diff --git a/libbb/speed_table.c b/libbb/speed_table.c index b04429e91..4075562db 100644 --- a/libbb/speed_table.c +++ b/libbb/speed_table.c @@ -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) { -- cgit v1.2.3