mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 11:08:03 +02:00
gallium/auxiliary: Fix zero integer literal to pointer comparison
Signed-off-by: Edward O'Callaghan <eocallaghan@alterapraxis.com> Signed-off-by: Marek Olšák <marek.olsak@amd.com>
This commit is contained in:
parent
3edae10601
commit
34782eec31
1 changed files with 1 additions and 1 deletions
|
|
@ -34,7 +34,7 @@ void
|
|||
u_mmDumpMemInfo(const struct mem_block *heap)
|
||||
{
|
||||
debug_printf("Memory heap %p:\n", (void *) heap);
|
||||
if (heap == 0) {
|
||||
if (heap == NULL) {
|
||||
debug_printf(" heap == 0\n");
|
||||
}
|
||||
else {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue