add cast so the file compiles in c++ mode too
This commit is contained in:
parent
5ef52a7e44
commit
dfb4915f0a
@ -28,7 +28,7 @@ char* mmap_private(const char* filename,size_t * filesize) {
|
|||||||
char *map;
|
char *map;
|
||||||
if (fd>=0) {
|
if (fd>=0) {
|
||||||
*filesize=lseek(fd,0,SEEK_END);
|
*filesize=lseek(fd,0,SEEK_END);
|
||||||
map=mmap(0,*filesize,PROT_READ|PROT_WRITE,MAP_PRIVATE,fd,0);
|
map=(char*)mmap(0,*filesize,PROT_READ|PROT_WRITE,MAP_PRIVATE,fd,0);
|
||||||
if (map==(char*)-1)
|
if (map==(char*)-1)
|
||||||
map=0;
|
map=0;
|
||||||
close(fd);
|
close(fd);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user