diff options
Diffstat (limited to 'dep/CascLib/src/common/Array.h')
-rw-r--r-- | dep/CascLib/src/common/Array.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dep/CascLib/src/common/Array.h b/dep/CascLib/src/common/Array.h index ea99d10fe22..832a230a8ed 100644 --- a/dep/CascLib/src/common/Array.h +++ b/dep/CascLib/src/common/Array.h @@ -191,7 +191,7 @@ class CASC_ARRAY ItemCountMax = ItemCountMax << 1; // Allocate new table - NewItemArray = CASC_REALLOC(BYTE, m_pItemArray, (ItemCountMax * m_ItemSize)); + NewItemArray = CASC_REALLOC(m_pItemArray, (ItemCountMax * m_ItemSize)); if (NewItemArray == NULL) return false; |