mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-04 12:54:58 +00:00
xmlwf/unixfilemap.c: Simplify "(void *)0" to NULL
This commit is contained in:
parent
d620de0f50
commit
bf4bc5cfcf
1 changed files with 2 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue