xmlwf/unixfilemap.c: Simplify "(void *)0" to NULL

This commit is contained in:
Sebastian Pipping 2025-03-29 01:13:16 +01:00
parent d620de0f50
commit bf4bc5cfcf

View file

@ -41,6 +41,7 @@
#include <errno.h>
#include <string.h>
#include <stdio.h>
#include <stdlib.h> // NULL
#include <unistd.h>
#ifndef MAP_FILE
@ -93,7 +94,7 @@ filemap(const tchar *name,
close(fd);
return 1;
}
p = mmap((void *)0, nbytes, PROT_READ, MAP_FILE | MAP_PRIVATE, fd, (off_t)0);
p = mmap(NULL, nbytes, PROT_READ, MAP_FILE | MAP_PRIVATE, fd, (off_t)0);
if (p == (void *)-1) {
tperror(name);
close(fd);