mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-18 07:39:08 +00:00
Silence GCC warning.
svn-id: r45413
This commit is contained in:
parent
efd41ffc46
commit
939d8d1a37
@ -454,7 +454,7 @@ void MemoryReAlloc(MEM_NODE *pMemNode, long size) {
|
||||
if (size != pMemNode->size) {
|
||||
|
||||
// make sure memory object is not locked and discarded
|
||||
assert(pMemNode->flags == DWM_LOCKED | DWM_DISCARDED);
|
||||
assert(pMemNode->flags == (DWM_LOCKED | DWM_DISCARDED));
|
||||
assert(pMemNode->size == 0);
|
||||
|
||||
// unlink the mnode from the current heap
|
||||
|
Loading…
Reference in New Issue
Block a user