diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/drivers/dri/common/mm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/common/mm.c b/src/mesa/drivers/dri/common/mm.c index 6572ccd9914..5781d9936c2 100644 --- a/src/mesa/drivers/dri/common/mm.c +++ b/src/mesa/drivers/dri/common/mm.c @@ -54,7 +54,7 @@ memHeap_t *mmInit(int ofs, PMemBlock blocks; if (size <= 0) { - return 0; + return NULL; } blocks = (TMemBlock *) calloc(1,sizeof(TMemBlock)); if (blocks) { @@ -63,7 +63,7 @@ memHeap_t *mmInit(int ofs, blocks->free = 1; return (memHeap_t *)blocks; } else - return 0; + return NULL; } |