use unsigned bitmask for consistency in ksigaction
authorRich Felker <dalias@aerifal.cx>
Wed, 11 Jul 2012 06:48:12 +0000 (02:48 -0400)
committerRich Felker <dalias@aerifal.cx>
Wed, 11 Jul 2012 06:48:12 +0000 (02:48 -0400)
the type doesn't actually matter, just the size, but it's nice to be
consistent...

src/internal/ksigaction.h

index 8bdfd1d..57f47b3 100644 (file)
@@ -2,5 +2,5 @@ struct k_sigaction {
        void (*handler)(int);
        unsigned long flags;
        void (*restorer)(void);
-       long mask[2];
+       unsigned long mask[2];
 };