summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/fhandler.cc
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2002-09-23 00:31:31 +0000
committerChristopher Faylor <me@cgf.cx>2002-09-23 00:31:31 +0000
commitf0227ea3c78d8d23dc35f0939219649447eecfae (patch)
tree0a116e294fa35db8a66901f6ef85b41720913c2f /winsup/cygwin/fhandler.cc
parentc87c8a533f9e917878d433956420953598ab6cd6 (diff)
downloadcygnal-f0227ea3c78d8d23dc35f0939219649447eecfae.tar.gz
cygnal-f0227ea3c78d8d23dc35f0939219649447eecfae.tar.bz2
cygnal-f0227ea3c78d8d23dc35f0939219649447eecfae.zip
More GNUify non-GNU formatted functions calls throughout.
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 e1271bc79..fccbb361e 100644
--- a/winsup/cygwin/fhandler.cc
+++ b/winsup/cygwin/fhandler.cc
@@ -617,7 +617,7 @@ fhandler_base::write (const void *ptr, size_t len)
fill in the gap with zeros. - DJ */
char zeros[512];
int number_of_zeros_to_write = current_position - actual_length;
- memset(zeros, 0, 512);
+ memset (zeros, 0, 512);
SetFilePointer (get_handle (), 0, 0, FILE_END);
while (number_of_zeros_to_write > 0)
{