summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorParadox924X <Paradox924X@54d463be-8e91-2dee-dedb-b68131a5f0ec>2010-11-17 02:16:13 +0000
committerParadox924X <Paradox924X@54d463be-8e91-2dee-dedb-b68131a5f0ec>2010-11-17 02:16:13 +0000
commit15ec7e3b5d5221c388c4ee97ef2688820e7f9d4b (patch)
tree41fba0d334083da8bf7b76710eb9a10329e5f0ac /src
parent81fdb28000f0f101b55ad331ca2c4adc40d9a958 (diff)
downloadhercules-15ec7e3b5d5221c388c4ee97ef2688820e7f9d4b.tar.gz
hercules-15ec7e3b5d5221c388c4ee97ef2688820e7f9d4b.tar.bz2
hercules-15ec7e3b5d5221c388c4ee97ef2688820e7f9d4b.tar.xz
hercules-15ec7e3b5d5221c388c4ee97ef2688820e7f9d4b.zip
Added a missing argument to a warning containing a format specifier.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/renewal@14465 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src')
-rw-r--r--src/map/mob.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/mob.c b/src/map/mob.c
index 7452bbd81..81fc9e68b 100644
--- a/src/map/mob.c
+++ b/src/map/mob.c
@@ -3418,7 +3418,7 @@ static bool mob_parse_dbrow(char** str)
return false;
}
if (pcdb_checkid(class_)) {
- ShowWarning("Mob with ID: %d not loaded. That ID is reserved for player classes.\n");
+ ShowWarning("Mob with ID: %d not loaded. That ID is reserved for player classes.\n", class_);
return false;
}