* mmap.cc (mmap): Initialize fh to avoid compiler warnings.
This commit is contained in:
parent
2762a24302
commit
9fedfd57d4
|
@ -1,3 +1,7 @@
|
||||||
|
Tue Jan 16 18:01:00 2001 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
|
* mmap.cc (mmap): Initialize fh to avoid compiler warnings.
|
||||||
|
|
||||||
Mon Jan 15 21:07:00 2001 Christopher Faylor <cgf@cygnus.com>
|
Mon Jan 15 21:07:00 2001 Christopher Faylor <cgf@cygnus.com>
|
||||||
|
|
||||||
* wait.cc (wait4): Rename variable for consistency. Allow restartable
|
* wait.cc (wait4): Rename variable for consistency. Allow restartable
|
||||||
|
|
|
@ -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;
|
DWORD gran_len = howmany (len, granularity) * granularity;
|
||||||
|
|
||||||
fhandler_disk_file fh_paging_file (NULL);
|
fhandler_disk_file fh_paging_file (NULL);
|
||||||
fhandler_base *fh;
|
fhandler_base *fh = NULL;
|
||||||
caddr_t base = addr;
|
caddr_t base = addr;
|
||||||
HANDLE h;
|
HANDLE h;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue