diff options
author | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-03-10 19:22:06 +0000 |
---|---|---|
committer | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-03-10 19:22:06 +0000 |
commit | 07ea853040a1240d40fefe5bb871a5c3c98c77a6 (patch) | |
tree | beb32cedafc6232bf8a49fe90f0769d471ea6791 /editors/awk.c | |
parent | 8ee3984df387bf31ba1d652a861d7fedbac7bfa8 (diff) | |
download | busybox-w32-07ea853040a1240d40fefe5bb871a5c3c98c77a6.tar.gz busybox-w32-07ea853040a1240d40fefe5bb871a5c3c98c77a6.tar.bz2 busybox-w32-07ea853040a1240d40fefe5bb871a5c3c98c77a6.zip |
Patch from Denis Vlasenko turning static const int (which gets emitted into
the busybox binary) into enums (which don't).
git-svn-id: svn://busybox.net/trunk/busybox@14513 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'editors/awk.c')
-rw-r--r-- | editors/awk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/awk.c b/editors/awk.c index 65856aa55..cce3b562a 100644 --- a/editors/awk.c +++ b/editors/awk.c | |||
@@ -392,7 +392,7 @@ static char * vValues = | |||
392 | /* hash size may grow to these values */ | 392 | /* hash size may grow to these values */ |
393 | #define FIRST_PRIME 61; | 393 | #define FIRST_PRIME 61; |
394 | static const unsigned int PRIMES[] = { 251, 1021, 4093, 16381, 65521 }; | 394 | static const unsigned int PRIMES[] = { 251, 1021, 4093, 16381, 65521 }; |
395 | static const unsigned int NPRIMES = sizeof(PRIMES) / sizeof(unsigned int); | 395 | enum { NPRIMES = sizeof(PRIMES) / sizeof(unsigned int) }; |
396 | 396 | ||
397 | /* globals */ | 397 | /* globals */ |
398 | 398 | ||