diff options
Diffstat (limited to 'src/server/shared')
-rw-r--r-- | src/server/shared/DataStores/DBCStore.cpp | 2 | ||||
-rw-r--r-- | src/server/shared/Packets/ByteBuffer.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/server/shared/DataStores/DBCStore.cpp b/src/server/shared/DataStores/DBCStore.cpp index 30cae057f90..b81b82e87b9 100644 --- a/src/server/shared/DataStores/DBCStore.cpp +++ b/src/server/shared/DataStores/DBCStore.cpp @@ -18,7 +18,7 @@ #include "DBCStore.h" #include "DBCDatabaseLoader.h" -DBCStorageBase::DBCStorageBase(char const* fmt) : _fieldCount(0), _fileFormat(fmt), _dataTable(nullptr), _indexTableSize(0) +DBCStorageBase::DBCStorageBase(char const* fmt) : _fieldCount(0), _fileFormat(fmt), _dataTable(nullptr), _dataTableEx(nullptr), _indexTableSize(0) { } diff --git a/src/server/shared/Packets/ByteBuffer.cpp b/src/server/shared/Packets/ByteBuffer.cpp index a4ab6e1daf7..aeab874f635 100644 --- a/src/server/shared/Packets/ByteBuffer.cpp +++ b/src/server/shared/Packets/ByteBuffer.cpp @@ -169,7 +169,7 @@ void ByteBuffer::hexlike() const for (uint32 i = 0; i < size(); ++i) { char buf[3]; - snprintf(buf, 3, "%2X ", read<uint8>(i)); + snprintf(buf, 3, "%2X", read<uint8>(i)); if ((i == (j * 8)) && ((i != (k * 16)))) { o << "| "; |