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/common/mmo.h | |
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/common/mmo.h')
-rw-r--r-- | src/common/mmo.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/mmo.h b/src/common/mmo.h index 70e7f103d..81ceae5f8 100644 --- a/src/common/mmo.h +++ b/src/common/mmo.h @@ -289,7 +289,7 @@ struct mail_message { char body[MAIL_BODY_LENGTH]; mail_status status; - unsigned int timestamp; // marks when the message was sent + time_t timestamp; // marks when the message was sent int zeny; struct item item; @@ -316,7 +316,7 @@ struct auction_data { unsigned short hours; int price, buynow; - unsigned int timestamp; // auction's end time + time_t timestamp; // auction's end time int auction_end_timer; }; |