Fixing compiler warning "assignment in condition" (ARMCC)

This commit is contained in:
Joel Bodenmann 2015-10-19 22:22:50 +02:00
parent 4b31f87fc8
commit 16d1323d59

View File

@ -154,7 +154,8 @@
}
// We need to do this the hard way
if ((new = gfxAlloc(sz)))
new = gfxAlloc(sz);
if (new)
return 0;
memcpy(new, ptr, p->sz - sizeof(memslot));
gfxFree(ptr);