diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2008-05-24 11:24:34 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2008-05-24 12:16:12 -0400 |
commit | 3711ccb07b7f0a13f4f1aa16a8fdca9c930f21ca (patch) | |
tree | 749f966473317b7cf6012ec00d50505a762bcd79 /include | |
parent | dedd4915af40cff6614707c50dcae43d17beadec (diff) |
x86: fixup the fallout of the bitops changes
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-x86/thread_info.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-x86/thread_info.h b/include/asm-x86/thread_info.h index 25d710532561..895339d2bc0b 100644 --- a/include/asm-x86/thread_info.h +++ b/include/asm-x86/thread_info.h | |||
@@ -245,7 +245,7 @@ static inline void set_restore_sigmask(void) | |||
245 | { | 245 | { |
246 | struct thread_info *ti = current_thread_info(); | 246 | struct thread_info *ti = current_thread_info(); |
247 | ti->status |= TS_RESTORE_SIGMASK; | 247 | ti->status |= TS_RESTORE_SIGMASK; |
248 | set_bit(TIF_SIGPENDING, &ti->flags); | 248 | set_bit(TIF_SIGPENDING, (unsigned long *)&ti->flags); |
249 | } | 249 | } |
250 | #endif /* !__ASSEMBLY__ */ | 250 | #endif /* !__ASSEMBLY__ */ |
251 | 251 | ||