Mercurial > sdl-ios-xcode
changeset 2210:1de324fce4e8
indent
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Mon, 23 Jul 2007 01:17:38 +0000 |
parents | b292fa4941c6 |
children | 9462f4408ecb |
files | src/stdlib/SDL_malloc.c |
diffstat | 1 files changed, 1 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/stdlib/SDL_malloc.c Mon Jul 23 01:11:52 2007 +0000 +++ b/src/stdlib/SDL_malloc.c Mon Jul 23 01:17:38 2007 +0000 @@ -3692,8 +3692,7 @@ /* Prefer mremap, fall back to munmap */ if ((CALL_MREMAP(sp->base, sp->size, newsize, 0) != MFAIL) - || (CALL_MUNMAP(sp->base + newsize, extra) == - 0)) { + || (CALL_MUNMAP(sp->base + newsize, extra) == 0)) { released = extra; } }