public inbox for cygwin-cvs@sourceware.org
help / color / mirror / Atom feed
* [newlib-cygwin] Cygwin: minor cleanups
@ 2019-01-13 22:16 Corinna Vinschen
  0 siblings, 0 replies; only message in thread
From: Corinna Vinschen @ 2019-01-13 22:16 UTC (permalink / raw)
  To: cygwin-cvs

https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=7f601990327861fdcacadf5985c2ef5161cb2554

commit 7f601990327861fdcacadf5985c2ef5161cb2554
Author: Corinna Vinschen <corinna@vinschen.de>
Date:   Sun Jan 13 22:48:43 2019 +0100

    Cygwin: minor cleanups
    
    Signed-off-by: Corinna Vinschen <corinna@vinschen.de>

Diff:
---
 winsup/cygwin/fhandler.h | 3 +--
 winsup/cygwin/net.cc     | 2 +-
 winsup/cygwin/signal.cc  | 7 ++++---
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/winsup/cygwin/fhandler.h b/winsup/cygwin/fhandler.h
index 7e46070..ec111de 100644
--- a/winsup/cygwin/fhandler.h
+++ b/winsup/cygwin/fhandler.h
@@ -2610,14 +2610,13 @@ class fhandler_procnet: public fhandler_proc
   pid_t pid;
  public:
   fhandler_procnet ();
+  fhandler_procnet (void *) {}
   virtual_ftype_t exists();
   int __reg3 readdir (DIR *, dirent *);
   int open (int flags, mode_t mode = 0);
   int __reg2 fstat (struct stat *buf);
   bool fill_filebuf ();
 
-  fhandler_procnet (void *) {}
-
   void copyto (fhandler_base *x)
   {
     x->pc.free_strings ();
diff --git a/winsup/cygwin/net.cc b/winsup/cygwin/net.cc
index 4494bf7..cfd29d1 100644
--- a/winsup/cygwin/net.cc
+++ b/winsup/cygwin/net.cc
@@ -61,7 +61,7 @@ get (const int fd)
   cygheap_fdget cfd (fd);
 
   if (cfd < 0)
-    return 0;
+    return NULL;
 
   fhandler_socket *const fh = cfd->is_socket ();
 
diff --git a/winsup/cygwin/signal.cc b/winsup/cygwin/signal.cc
index 74d6eb6..c5e9d01 100644
--- a/winsup/cygwin/signal.cc
+++ b/winsup/cygwin/signal.cc
@@ -635,9 +635,10 @@ sigwait_common (const sigset_t *set, siginfo_t *info, PLARGE_INTEGER waittime)
 	  break;
 	}
     }
-  __except (EFAULT) {
-    res = -1;
-  }
+  __except (EFAULT)
+    {
+      res = -1;
+    }
   __endtry
   sigproc_printf ("returning signal %d", res);
   return res;


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2019-01-13 22:16 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-13 22:16 [newlib-cygwin] Cygwin: minor cleanups Corinna Vinschen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).