diff options
Diffstat (limited to 'winsup/cygwin/fhandler_raw.cc')
-rw-r--r-- | winsup/cygwin/fhandler_raw.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/fhandler_raw.cc b/winsup/cygwin/fhandler_raw.cc index 2ce43c363..2b8470a36 100644 --- a/winsup/cygwin/fhandler_raw.cc +++ b/winsup/cygwin/fhandler_raw.cc @@ -56,7 +56,7 @@ static BOOL read_file (HANDLE fh, void *buf, DWORD to_read, BOOL ret; *err = 0; - if (!(ret = ReadFile(fh, buf, to_read, read, 0))) + if (!(ret = ReadFile (fh, buf, to_read, read, 0))) { if ((*err = GetLastError ()) == ERROR_MEDIA_CHANGED || *err == ERROR_BUS_RESET) @@ -136,7 +136,7 @@ fhandler_dev_raw::open (path_conv *real_path, int flags, mode_t) if (!wincap.has_raw_devices ()) { set_errno (ENOENT); - debug_printf("%s is accessible under NT/W2K only",real_path->get_win32()); + debug_printf ("%s is accessible under NT/W2K only",real_path->get_win32()); return 0; } |