fix compilation

This commit is contained in:
Yehonal
2016-06-26 17:33:35 +02:00
parent e8e94a0a66
commit 6bc919e7d4

View File

@@ -376,7 +376,7 @@ class ByteBuffer
lt.tm_mon = (packedDate >> 20) & 0xF;
lt.tm_year = ((packedDate >> 24) & 0x1F) + 100;
return uint32(mktime(&lt) + _timezone);
return uint32(mktime(&lt) + timezone);
}
ByteBuffer& ReadPackedTime(uint32& time)