diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-06-24 00:07:43 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-06-24 00:07:43 +0300 |
commit | ab63dc5e04c27c6415b7418e4f87dde403e97d17 (patch) | |
tree | faf8682ec93e72bb680e4e3e9b2e8bbbd1b95e91 /src | |
parent | 5386d206d257f15b8cfbee55d302757540c2ad01 (diff) | |
download | evol-hercules-ab63dc5e04c27c6415b7418e4f87dde403e97d17.tar.gz evol-hercules-ab63dc5e04c27c6415b7418e4f87dde403e97d17.tar.bz2 evol-hercules-ab63dc5e04c27c6415b7418e4f87dde403e97d17.tar.xz evol-hercules-ab63dc5e04c27c6415b7418e4f87dde403e97d17.zip |
Fix compilation warning on i386 arch.
Diffstat (limited to 'src')
-rw-r--r-- | src/emap/script_buildins.c | 2 |
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; \ } |