9
0
Fork 0

Fix warning introduced with last checkin

git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@3262 7fd9a85b-ad96-42d3-883c-3090e2eb8679
This commit is contained in:
patacongo 2011-01-19 20:18:31 +00:00
parent 80a12c0a25
commit b9407fd555
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ FAR void *memalign(size_t alignment, size_t size)
/* Then malloc that size */
rawchunk = (size_t)malloc(allocsize);
if (rawchunk == NULL)
if (rawchunk == 0)
{
return NULL;
}