summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-06-24 00:07:43 +0300
committerAndrei Karas <akaras@inbox.ru>2016-06-24 00:07:43 +0300
commitab63dc5e04c27c6415b7418e4f87dde403e97d17 (patch)
treefaf8682ec93e72bb680e4e3e9b2e8bbbd1b95e91
parent5386d206d257f15b8cfbee55d302757540c2ad01 (diff)
downloadevol-hercules-ab63dc5e04c27c6415b7418e4f87dde403e97d17.tar.gz
evol-hercules-ab63dc5e04c27c6415b7418e4f87dde403e97d17.tar.bz2
evol-hercules-ab63dc5e04c27c6415b7418e4f87dde403e97d17.tar.xz
evol-hercules-ab63dc5e04c27c6415b7418e4f87dde403e97d17.zip
Fix compilation warning on i386 arch.
-rw-r--r--src/emap/script_buildins.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emap/script_buildins.c b/src/emap/script_buildins.c
index d34b635..c2da166 100644
--- a/src/emap/script_buildins.c
+++ b/src/emap/script_buildins.c
@@ -1912,7 +1912,7 @@ BUILDIN(setFakeCells)
#define checkHashTableExists(id) \
if (!htreg->hashtable_exists(id)) \
{ \
- ShowError("%s: hashtable with id=%ld does not exist\n", __func__, id); \
+ ShowError("%s: hashtable with id=%ld does not exist\n", __func__, (int)id); \
script_pushint(st, 0); \
return false; \
}