summaryrefslogtreecommitdiffstats
path: root/src/lua-squarkdb.c
diff options
context:
space:
mode:
authorTimo Teräs <timo.teras@iki.fi>2011-10-07 01:16:31 +0300
committerTimo Teräs <timo.teras@iki.fi>2011-10-07 01:16:31 +0300
commit16ee995cfeff2af51b5f00b15fe1500cc4deeb99 (patch)
treed6ec02ad1d8928e1874da69cda3c8abcfa3ee801 /src/lua-squarkdb.c
parent149184c48a92b7da35691b4c977b810cdcf528dd (diff)
downloadsquark-16ee995cfeff2af51b5f00b15fe1500cc4deeb99.tar.bz2
squark-16ee995cfeff2af51b5f00b15fe1500cc4deeb99.tar.xz
lua, filter: fix 64-bit issuesv0.4
Diffstat (limited to 'src/lua-squarkdb.c')
-rw-r--r--src/lua-squarkdb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lua-squarkdb.c b/src/lua-squarkdb.c
index 5a30848..cc840c6 100644
--- a/src/lua-squarkdb.c
+++ b/src/lua-squarkdb.c
@@ -199,7 +199,7 @@ static int Lsqdb_create_index(lua_State *L)
static int Lsqdb_assign_index(lua_State *L)
{
struct sqdb *db;
- size_t size;
+ uint32_t size;
lua_Integer idx;
struct sqdb_index_entry *ptr;