Explorar o código

use unsigned bitmask for consistency in ksigaction

the type doesn't actually matter, just the size, but it's nice to be
consistent...
Rich Felker %!s(int64=12) %!d(string=hai) anos
pai
achega
5091e0802f
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/internal/ksigaction.h

+ 1 - 1
src/internal/ksigaction.h

@@ -2,5 +2,5 @@ struct k_sigaction {
 	void (*handler)(int);
 	unsigned long flags;
 	void (*restorer)(void);
-	long mask[2];
+	unsigned long mask[2];
 };