Compare commits

...

1 Commits

Author SHA1 Message Date
Yehonal 6bc919e7d4 fix compilation 2016-06-26 17:33:35 +02:00
+1 -1
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)