diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-10-21 21:22:22 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-10-23 17:11:53 +0300 |
commit | 4b2c40a6321b82d0b5b3557e604bc42b2690fec5 (patch) | |
tree | 2aae63268e4a1715587716af04672cae5e028140 /src/map/script.c | |
parent | 00624f157bdee3bd438bd7d9ecd4aed03815c23e (diff) | |
download | hercules-4b2c40a6321b82d0b5b3557e604bc42b2690fec5.tar.gz hercules-4b2c40a6321b82d0b5b3557e604bc42b2690fec5.tar.bz2 hercules-4b2c40a6321b82d0b5b3557e604bc42b2690fec5.tar.xz hercules-4b2c40a6321b82d0b5b3557e604bc42b2690fec5.zip |
Fix warning with gcc-7.
Diffstat (limited to 'src/map/script.c')
-rw-r--r-- | src/map/script.c | 2 |
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; } |