Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2003-06-02 18:07:48 +0400
committerChristopher Faylor <me@cgf.cx>2003-06-02 18:07:48 +0400
commit418c6236146a7b26b0501a863f99480d990f06cd (patch)
treedc7822b752ce95cc34a0caf5785167e67562f945 /winsup/cygwin/fhandler.cc
parentc17e8306d06f795755b751fa8c0021c16d34fa25 (diff)
* fhandler.cc (fhandler_base::write): Correct minor printf formatting style
glitch.
Diffstat (limited to 'winsup/cygwin/fhandler.cc')
-rw-r--r--winsup/cygwin/fhandler.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/fhandler.cc b/winsup/cygwin/fhandler.cc
index ebd1aa9f6..ac0dfd581 100644
--- a/winsup/cygwin/fhandler.cc
+++ b/winsup/cygwin/fhandler.cc
@@ -638,7 +638,7 @@ fhandler_base::write (const void *ptr, size_t len)
HANDLE h = get_handle ();
BOOL r = DeviceIoControl (h, FSCTL_SET_SPARSE, NULL, 0, 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);
}
else if (wincap.has_lseek_bug ())