Skip to content

Commit

Permalink
x86: fixup the fallout of the bitops changes
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
  • Loading branch information
Thomas Gleixner committed May 24, 2008
1 parent dedd491 commit 3711ccb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/asm-x86/thread_info.h
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ static inline void set_restore_sigmask(void)
{
struct thread_info *ti = current_thread_info();
ti->status |= TS_RESTORE_SIGMASK;
set_bit(TIF_SIGPENDING, &ti->flags);
set_bit(TIF_SIGPENDING, (unsigned long *)&ti->flags);
}
#endif /* !__ASSEMBLY__ */

Expand Down

0 comments on commit 3711ccb

Please sign in to comment.