mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-24 18:26:11 +03:00
Merge pull request #5686 from ngosang/minor_fix
Fix warning in geoipdatabase.cpp
This commit is contained in:
commit
943cc86eb9
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ namespace
|
|||
{
|
||||
const quint32 __ENDIAN_TEST__ = 0x00000001;
|
||||
const bool __IS_LITTLE_ENDIAN__ = (reinterpret_cast<const uchar *>(&__ENDIAN_TEST__)[0] == 0x01);
|
||||
const quint32 MAX_FILE_SIZE = 67108864; // 64MB
|
||||
const qint32 MAX_FILE_SIZE = 67108864; // 64MB
|
||||
const char DB_TYPE[] = "GeoLite2-Country";
|
||||
const quint32 MAX_METADATA_SIZE = 131072; // 128KB
|
||||
const char METADATA_BEGIN_MARK[] = "\xab\xcd\xefMaxMind.com";
|
||||
|
|
Loading…
Reference in a new issue