diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-04-27 20:03:25 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-04-27 20:03:25 +0000 |
commit | f4f66f5c07b22bd68274e21aee2b32cb69cea637 (patch) | |
tree | 4400d748e0e3c50c8ab512e8561e2d1b7841e595 /src/map/clif.c | |
parent | 0f3c97f0852fcdd43011cd3550449e5ab6037e66 (diff) | |
download | hercules-f4f66f5c07b22bd68274e21aee2b32cb69cea637.tar.gz hercules-f4f66f5c07b22bd68274e21aee2b32cb69cea637.tar.bz2 hercules-f4f66f5c07b22bd68274e21aee2b32cb69cea637.tar.xz hercules-f4f66f5c07b22bd68274e21aee2b32cb69cea637.zip |
fixing some timestamp type difference warnings...
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12669 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/clif.c')
-rw-r--r-- | src/map/clif.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index 985871cc7..d06e2bd07 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -11414,7 +11414,7 @@ void clif_Mail_refreshinbox(struct map_session_data *sd) memcpy(WFIFOP(fd,12+73*j), msg->title, MAIL_TITLE_LENGTH); WFIFOB(fd,52+73*j) = (msg->status != MAIL_UNREAD); // 0: unread, 1: read memcpy(WFIFOP(fd,53+73*j), msg->send_name, NAME_LENGTH); - WFIFOL(fd,77+73*j) = msg->timestamp; + WFIFOL(fd,77+73*j) = (uint32)msg->timestamp; j++; } WFIFOSET(fd,len); @@ -11763,7 +11763,7 @@ void clif_Auction_results(struct map_session_data *sd, short count, short pages, WFIFOL(fd,47+k) = auction.price; WFIFOL(fd,51+k) = auction.buynow; safestrncpy((char*)WFIFOP(fd,55+k), auction.buyer_name, NAME_LENGTH); - WFIFOL(fd,79+k) = auction.timestamp; + WFIFOL(fd,79+k) = (uint32)auction.timestamp; } WFIFOSET(fd, 12 + (count * 83)); } |