* fhandler_virtual.cc (fhandler_virtual::close): Quiet a compiler warning.

This commit is contained in:
Christopher Faylor
2002-05-12 01:59:53 +00:00
parent 6566d27da4
commit b84621d2e3
2 changed files with 6 additions and 1 deletions

View File

@@ -158,7 +158,7 @@ fhandler_virtual::close ()
if (filebuf)
cfree (filebuf);
filebuf = NULL;
bufalloc = -1;
bufalloc = (size_t) -1;
cygwin_shared->delqueue.process_queue ();
return 0;
}