diff options
author | Mike Pall <mike> | 2016-03-22 20:40:41 +0100 |
---|---|---|
committer | Mike Pall <mike> | 2016-03-22 20:40:41 +0100 |
commit | ddadbe80997bc1ebe12e986298d26bef07811e62 (patch) | |
tree | 9d00853b7757be842c6a5c775fb153120a7556b5 /src/host/buildvm_fold.c | |
parent | db1b399af134e715b8ba9a0e4ad9cbafbe06ecb1 (diff) | |
download | luajit-ddadbe80997bc1ebe12e986298d26bef07811e62.tar.gz luajit-ddadbe80997bc1ebe12e986298d26bef07811e62.tar.bz2 luajit-ddadbe80997bc1ebe12e986298d26bef07811e62.zip |
Fix compiler warnings.
Thanks to Demetri Obenour.
Diffstat (limited to 'src/host/buildvm_fold.c')
-rw-r--r-- | src/host/buildvm_fold.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/host/buildvm_fold.c b/src/host/buildvm_fold.c index eec1af1c..e87a0af3 100644 --- a/src/host/buildvm_fold.c +++ b/src/host/buildvm_fold.c | |||
@@ -9,7 +9,7 @@ | |||
9 | 9 | ||
10 | /* Context for the folding hash table generator. */ | 10 | /* Context for the folding hash table generator. */ |
11 | static int lineno; | 11 | static int lineno; |
12 | static int funcidx; | 12 | static uint32_t funcidx; |
13 | static uint32_t foldkeys[BUILD_MAX_FOLD]; | 13 | static uint32_t foldkeys[BUILD_MAX_FOLD]; |
14 | static uint32_t nkeys; | 14 | static uint32_t nkeys; |
15 | 15 | ||