From f0227ea3c78d8d23dc35f0939219649447eecfae Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Mon, 23 Sep 2002 00:31:31 +0000 Subject: More GNUify non-GNU formatted functions calls throughout. --- winsup/cygwin/fhandler.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'winsup/cygwin/fhandler.cc') 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) { -- cgit v1.2.3