From 293b6db260480627d08bc4465af88e01b0b4edcf Mon Sep 17 00:00:00 2001 From: skotlex Date: Sun, 12 Feb 2006 21:42:07 +0000 Subject: - Fixed error display when the exp table reads a value which is capped to UINT_MAX git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5261 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/map/pc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/map/pc.c b/src/map/pc.c index 34286e3cb..675895449 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -8072,7 +8072,7 @@ int pc_split_atoui(char *str,unsigned int *val, char sep, int max) val[i] = UINT_MAX; if (!warning) { warning = 1; - ShowWarning("pc_readdb (exp.txt): Required exp per level is capped to %d\n", UINT_MAX); + ShowWarning("pc_readdb (exp.txt): Required exp per level is capped to %u\n", UINT_MAX); } } else val[i] = (unsigned int)f; -- cgit v1.2.3-70-g09d2