diff options
author | Christopher Faylor <me@cgf.cx> | 2013-03-31 12:37:45 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2013-03-31 12:37:45 +0000 |
commit | 4ddb658e37db0dae87366cfa6f29a0604b3dfc7d (patch) | |
tree | fa7305ee1415eacd9a82c74b584a2274f281080d /winsup/cygwin | |
parent | 8f8eeb70ba7354749c78bc5013eeb12f4c18fba0 (diff) | |
download | cygnal-4ddb658e37db0dae87366cfa6f29a0604b3dfc7d.tar.gz cygnal-4ddb658e37db0dae87366cfa6f29a0604b3dfc7d.tar.bz2 cygnal-4ddb658e37db0dae87366cfa6f29a0604b3dfc7d.zip |
whitespace
Diffstat (limited to 'winsup/cygwin')
-rw-r--r-- | winsup/cygwin/autoload.cc | 2 | ||||
-rw-r--r-- | winsup/cygwin/fhandler_floppy.cc | 4 | ||||
-rw-r--r-- | winsup/cygwin/select.cc | 2 | ||||
-rw-r--r-- | winsup/cygwin/select.h | 4 |
4 files changed, 6 insertions, 6 deletions
diff --git a/winsup/cygwin/autoload.cc b/winsup/cygwin/autoload.cc index 4345dc93b..3e61f837f 100644 --- a/winsup/cygwin/autoload.cc +++ b/winsup/cygwin/autoload.cc @@ -299,7 +299,7 @@ std_dll_init () /* Initialization function for winsock stuff. */ WSADATA NO_COPY wsadata; -static long long __attribute__ ((used, noinline)) +static long long __attribute__ ((used, noinline)) wsock_init () { static LONG NO_COPY here = -1L; diff --git a/winsup/cygwin/fhandler_floppy.cc b/winsup/cygwin/fhandler_floppy.cc index 431a52a6b..bbbaf9ca5 100644 --- a/winsup/cygwin/fhandler_floppy.cc +++ b/winsup/cygwin/fhandler_floppy.cc @@ -2,7 +2,7 @@ fhandler classes. Copyright 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, - 2011, 2012 Red Hat, Inc. + 2011, 2012, 2013 Red Hat, Inc. This file is part of Cygwin. @@ -647,7 +647,7 @@ fhandler_dev_floppy::raw_write (const void *ptr, size_t len) } return bytes_written; } - + /* In O_DIRECT case, just write. */ if (write_file (p, len, &bytes_written, &ret)) return bytes_written; diff --git a/winsup/cygwin/select.cc b/winsup/cygwin/select.cc index c6799bf53..11964c9d6 100644 --- a/winsup/cygwin/select.cc +++ b/winsup/cygwin/select.cc @@ -295,7 +295,7 @@ select_record::dump_select_record () read_ready, write_ready, except_ready); select_printf ("read_selected %d, write_selected %d, except_selected %d, except_on_write %d", read_selected, write_selected, except_selected, except_on_write); - + select_printf ("startup %p, peek %p, verify %p cleanup %p, next %p", startup, peek, verify, cleanup, next); } diff --git a/winsup/cygwin/select.h b/winsup/cygwin/select.h index 32f74d5ec..9231e2fdc 100644 --- a/winsup/cygwin/select.h +++ b/winsup/cygwin/select.h @@ -1,7 +1,7 @@ /* select.h Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, - 2007, 2008, 2009, 2010, 2011, 2012 Red Hat, Inc. + 2007, 2008, 2009, 2010, 2011, 2012, 2013 Red Hat, Inc. This file is part of Cygwin. @@ -59,7 +59,7 @@ struct select_socket_info: public select_info int num_w4; LONG *ser_num; HANDLE *w4; - select_socket_info (): select_info (), num_w4 (0), ser_num (0), w4 (NULL) {} + select_socket_info (): select_info (), num_w4 (0), ser_num (0), w4 (NULL) {} }; struct select_serial_info: public select_info |