* fhandler.cc (fhandler_base::write): Correct minor printf formatting style
glitch.
This commit is contained in:
parent
c17e8306d0
commit
418c623614
|
@ -1,3 +1,8 @@
|
||||||
|
2003-06-02 Christopher Faylor <cgf@redhat.com>
|
||||||
|
|
||||||
|
* fhandler.cc (fhandler_base::write): Correct minor printf formatting
|
||||||
|
style glitch.
|
||||||
|
|
||||||
2003-06-01 Pierre Humblet <pierre.humblet@ieee.org>
|
2003-06-01 Pierre Humblet <pierre.humblet@ieee.org>
|
||||||
|
|
||||||
* fhandler_disk_file.cc (fhandler_disk_file::fstat_by_name): Assume
|
* fhandler_disk_file.cc (fhandler_disk_file::fstat_by_name): Assume
|
||||||
|
|
|
@ -638,7 +638,7 @@ fhandler_base::write (const void *ptr, size_t len)
|
||||||
HANDLE h = get_handle ();
|
HANDLE h = get_handle ();
|
||||||
BOOL r = DeviceIoControl (h, FSCTL_SET_SPARSE, NULL, 0, NULL,
|
BOOL r = DeviceIoControl (h, FSCTL_SET_SPARSE, NULL, 0, NULL,
|
||||||
0, &dw, NULL);
|
0, &dw, NULL);
|
||||||
syscall_printf ("%d = DeviceIoControl(0x%x, FSCTL_SET_SPARSE, "
|
syscall_printf ("%d = DeviceIoControl(%p, FSCTL_SET_SPARSE, "
|
||||||
"NULL, 0, NULL, 0, &dw, NULL)", r, h);
|
"NULL, 0, NULL, 0, &dw, NULL)", r, h);
|
||||||
}
|
}
|
||||||
else if (wincap.has_lseek_bug ())
|
else if (wincap.has_lseek_bug ())
|
||||||
|
|
Loading…
Reference in New Issue