diff options
Diffstat (limited to 'arch/sparc/include/asm/compat_signal.h')
-rw-r--r-- | arch/sparc/include/asm/compat_signal.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/sparc/include/asm/compat_signal.h b/arch/sparc/include/asm/compat_signal.h index 9ed1f128b4d1..4b027b1044fa 100644 --- a/arch/sparc/include/asm/compat_signal.h +++ b/arch/sparc/include/asm/compat_signal.h | |||
@@ -6,17 +6,17 @@ | |||
6 | 6 | ||
7 | #ifdef CONFIG_COMPAT | 7 | #ifdef CONFIG_COMPAT |
8 | struct __new_sigaction32 { | 8 | struct __new_sigaction32 { |
9 | unsigned sa_handler; | 9 | unsigned int sa_handler; |
10 | unsigned int sa_flags; | 10 | unsigned int sa_flags; |
11 | unsigned sa_restorer; /* not used by Linux/SPARC yet */ | 11 | unsigned int sa_restorer; /* not used by Linux/SPARC yet */ |
12 | compat_sigset_t sa_mask; | 12 | compat_sigset_t sa_mask; |
13 | }; | 13 | }; |
14 | 14 | ||
15 | struct __old_sigaction32 { | 15 | struct __old_sigaction32 { |
16 | unsigned sa_handler; | 16 | unsigned int sa_handler; |
17 | compat_old_sigset_t sa_mask; | 17 | compat_old_sigset_t sa_mask; |
18 | unsigned int sa_flags; | 18 | unsigned int sa_flags; |
19 | unsigned sa_restorer; /* not used by Linux/SPARC yet */ | 19 | unsigned int sa_restorer; /* not used by Linux/SPARC yet */ |
20 | }; | 20 | }; |
21 | #endif | 21 | #endif |
22 | 22 | ||