summaryrefslogtreecommitdiff
path: root/src/map/battleground.c
diff options
context:
space:
mode:
authorshennetsind <ind@henn.et>2013-05-30 22:59:02 -0300
committershennetsind <ind@henn.et>2013-05-30 22:59:02 -0300
commit401136e19ea7986acd9a57c54e0a6fa4594186c9 (patch)
tree030e469a9ca7507bb4983d6fc422f5caf34ea978 /src/map/battleground.c
parentf6bca33e1524354a28223f14e45d4765fcb06c92 (diff)
downloadhercules-401136e19ea7986acd9a57c54e0a6fa4594186c9.tar.gz
hercules-401136e19ea7986acd9a57c54e0a6fa4594186c9.tar.bz2
hercules-401136e19ea7986acd9a57c54e0a6fa4594186c9.tar.xz
hercules-401136e19ea7986acd9a57c54e0a6fa4594186c9.zip
Follow up 20bdc01fa687b174a732be4483ddea4982d67ce9
Fixed warnings pinpointed by mkbu95 (THANKS) Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/map/battleground.c')
-rw-r--r--src/map/battleground.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/battleground.c b/src/map/battleground.c
index 4bb6035ad..bfcd56d8e 100644
--- a/src/map/battleground.c
+++ b/src/map/battleground.c
@@ -598,7 +598,7 @@ enum BATTLEGROUNDS_QUEUE_ACK bg_canqueue(struct map_session_data *sd, struct bg_
if ( !(sd->class_&JOBL_2) ) /* TODO: maybe make this a per-arena setting, so users may make custom arenas like baby-only,whatever. */
return BGQA_FAIL_CLASS_INVALID;
- tsec = time(NULL);
+ tsec = (unsigned int)time(NULL);
if ( ( tick = pc_readglobalreg(sd, bg->gdelay_var) ) && tsec < tick ) {
char response[100];