From 5091e0802fea020bf6f7305e9743f276208413d4 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Wed, 11 Jul 2012 02:48:12 -0400 Subject: use unsigned bitmask for consistency in ksigaction the type doesn't actually matter, just the size, but it's nice to be consistent... --- src/internal/ksigaction.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/internal/ksigaction.h b/src/internal/ksigaction.h index 8bdfd1d8..57f47b3f 100644 --- a/src/internal/ksigaction.h +++ b/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]; }; -- cgit v1.2.1