summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-10-27 19:02:08 +0300
committerGitHub <noreply@github.com>2017-10-27 19:02:08 +0300
commit7262b517490a6082743d4f84f783dc141ac490cb (patch)
tree2aae63268e4a1715587716af04672cae5e028140
parent00624f157bdee3bd438bd7d9ecd4aed03815c23e (diff)
parent4b2c40a6321b82d0b5b3557e604bc42b2690fec5 (diff)
downloadhercules-7262b517490a6082743d4f84f783dc141ac490cb.tar.gz
hercules-7262b517490a6082743d4f84f783dc141ac490cb.tar.bz2
hercules-7262b517490a6082743d4f84f783dc141ac490cb.tar.xz
hercules-7262b517490a6082743d4f84f783dc141ac490cb.zip
Merge pull request #1887 from 4144/fixwarnings
Fix warning with gcc-7.
-rw-r--r--src/map/script.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/script.c b/src/map/script.c
index 1bbffa20e..6b920514c 100644
--- a/src/map/script.c
+++ b/src/map/script.c
@@ -23506,7 +23506,7 @@ BUILDIN(dressroom)
clif->dressroom_open(sd, 0);
break;
default:
- ShowWarning("script:dressroom: unknown mode (%i).\n", mode);
+ ShowWarning("script:dressroom: unknown mode (%u).\n", mode);
script_pushint(st, 0);
return false;
}