diff options
author | toms <toms@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-08-20 20:56:08 +0000 |
---|---|---|
committer | toms <toms@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-08-20 20:56:08 +0000 |
commit | d2b562b8242d07c6a373baaa6dce66fa85df9eb5 (patch) | |
tree | e64fde558953685647e430ce7409f909bd5a3f4e /src/map/atcommand.c | |
parent | ce1a84b0633abd41476d388c01d50c00aa3d99a2 (diff) | |
download | hercules-d2b562b8242d07c6a373baaa6dce66fa85df9eb5.tar.gz hercules-d2b562b8242d07c6a373baaa6dce66fa85df9eb5.tar.bz2 hercules-d2b562b8242d07c6a373baaa6dce66fa85df9eb5.tar.xz hercules-d2b562b8242d07c6a373baaa6dce66fa85df9eb5.zip |
Fixed "int format, long unsigned int arg" warning
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8391 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r-- | src/map/atcommand.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c index 1ba9e620d..b07d77520 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -9953,7 +9953,7 @@ int atcommand_hominfo( snprintf(atcmd_output, sizeof(atcmd_output) ,"ATK : %d - MATK : %d~%d", sd->hd->battle_status.rhw.atk2+sd->hd->battle_status.batk, sd->hd->battle_status.matk_min, sd->hd->battle_status.matk_max);
clif_displaymessage(fd, atcmd_output);
- snprintf(atcmd_output, sizeof(atcmd_output) ,"Hungry : %d - Intimacy : %d", sd->homunculus.hunger, sd->homunculus.intimacy);
+ snprintf(atcmd_output, sizeof(atcmd_output) ,"Hungry : %d - Intimacy : %u", sd->homunculus.hunger, sd->homunculus.intimacy);
clif_displaymessage(fd, atcmd_output);
return 0;
|