aboutsummaryrefslogtreecommitdiff
path: root/src/host/buildvm_fold.c
diff options
context:
space:
mode:
authorMike Pall <mike>2016-03-22 20:40:41 +0100
committerMike Pall <mike>2016-03-22 20:40:41 +0100
commitddadbe80997bc1ebe12e986298d26bef07811e62 (patch)
tree9d00853b7757be842c6a5c775fb153120a7556b5 /src/host/buildvm_fold.c
parentdb1b399af134e715b8ba9a0e4ad9cbafbe06ecb1 (diff)
downloadluajit-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.c2
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. */
11static int lineno; 11static int lineno;
12static int funcidx; 12static uint32_t funcidx;
13static uint32_t foldkeys[BUILD_MAX_FOLD]; 13static uint32_t foldkeys[BUILD_MAX_FOLD];
14static uint32_t nkeys; 14static uint32_t nkeys;
15 15