Fixing compiler warning "assignment in condition" (ARMCC)

ugfx_release_2.6
Joel Bodenmann 2015-10-19 22:22:50 +02:00
parent 4b31f87fc8
commit 16d1323d59
1 changed files with 2 additions and 1 deletions

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);