projects
/
oweals
/
musl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0b63779
)
use unsigned bitmask for consistency in ksigaction
author
Rich Felker
<dalias@aerifal.cx>
Wed, 11 Jul 2012 06:48:12 +0000
(
02:48
-0400)
committer
Rich 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
patch
|
blob
|
history
diff --git
a/src/internal/ksigaction.h
b/src/internal/ksigaction.h
index 8bdfd1d8ae9a6b6d3335f02439111993c867913c..57f47b3f8688c6b2e274d772a2bbdb267c47c42d 100644
(file)
--- 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];
};