]> git.pond.sub.org Git - empserver/blobdiff - src/lib/w32/posixio.c
Fix trailing whitespace
[empserver] / src / lib / w32 / posixio.c
index b813ae0e0ffd3e60382fa5bbfc67021046367bea..42ab8cde25816039394f853efcb355712dbb9e2c 100644 (file)
@@ -26,7 +26,7 @@
  *  ---
  *
  *  posixio.c: POSIX IO emulation layer for WIN32
- * 
+ *
  *  Known contributors to this file:
  *     Ron Koenderink, 2007
  *     Markus Armbruster, 2007-2008
@@ -314,7 +314,7 @@ posix_socket(int domain, int type, int protocol)
 {
     SOCKET handle;
     int new_fd;
-    
+
     if ((new_fd = get_fd()) < 0)
        return -1;
 
@@ -669,7 +669,7 @@ fcntl(int fd, int cmd, ...)
        if (type == FDMAP_IO_SOCKET) {
            result = WSAIoctl(handle, FIONBIO, NULL, 0,&nonblocking,
                sizeof (nonblocking), &bytes_returned, NULL, NULL);
-       
+
            if(result < 0) {
                errno = WSAGetLastError();
                return -1;