* mmap.cc (mmap): Initialize fh to avoid compiler warnings.

This commit is contained in:
Corinna Vinschen
2001-01-16 17:02:46 +00:00
parent 2762a24302
commit 9fedfd57d4
2 changed files with 5 additions and 1 deletions

View File

@@ -386,7 +386,7 @@ mmap (caddr_t addr, size_t len, int prot, int flags, int fd, off_t off)
DWORD gran_len = howmany (len, granularity) * granularity;
fhandler_disk_file fh_paging_file (NULL);
fhandler_base *fh;
fhandler_base *fh = NULL;
caddr_t base = addr;
HANDLE h;