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:
Diffstat (limited to 'winsup/cygwin/fhandler_zero.cc')
-rw-r--r--winsup/cygwin/fhandler_zero.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/fhandler_zero.cc b/winsup/cygwin/fhandler_zero.cc
index 15c04d4b0..86b84fb30 100644
--- a/winsup/cygwin/fhandler_zero.cc
+++ b/winsup/cygwin/fhandler_zero.cc
@@ -38,7 +38,7 @@ fhandler_dev_zero::write (const void *, size_t len)
int __stdcall
fhandler_dev_zero::read (void *ptr, size_t len)
{
- memset(ptr, 0, len);
+ memset (ptr, 0, len);
return len;
}
@@ -51,5 +51,5 @@ fhandler_dev_zero::lseek (__off64_t, int)
void
fhandler_dev_zero::dump ()
{
- paranoid_printf("here, fhandler_dev_zero");
+ paranoid_printf ("here, fhandler_dev_zero");
}