summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-06-24 00:18:31 +0300
committerAndrei Karas <akaras@inbox.ru>2016-06-24 00:18:31 +0300
commitce1ca12ff11b17ba26b500e04be3bd7e2639cb8e (patch)
treee9b47b1937dd2a3dd2f4975dada25cada91e7f85
parent10a1cabfaf1d344adb9f60908212195ec2043c89 (diff)
downloadevol-hercules-ce1ca12ff11b17ba26b500e04be3bd7e2639cb8e.tar.gz
evol-hercules-ce1ca12ff11b17ba26b500e04be3bd7e2639cb8e.tar.bz2
evol-hercules-ce1ca12ff11b17ba26b500e04be3bd7e2639cb8e.tar.xz
evol-hercules-ce1ca12ff11b17ba26b500e04be3bd7e2639cb8e.zip
Fix another i386 warning.
-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 dfe0e1d..c4c1d3a 100644
--- a/src/emap/script_buildins.c
+++ b/src/emap/script_buildins.c
@@ -2047,7 +2047,7 @@ BUILDIN(htIterator)
#define checkHtIteratorExists(id) \
if (!htreg->iterator_exists(id)) \
{ \
- ShowError("%s: htIterator with id=%ld does not exist\n", __func__, id); \
+ ShowError("%s: htIterator with id=%d does not exist\n", __func__, (int)id); \
script_pushint(st, 0); \
return false; \
}