Chromium Code Reviews| Index: lss/linux_syscall_support.h |
| =================================================================== |
| --- lss/linux_syscall_support.h (revision 19) |
| +++ lss/linux_syscall_support.h (working copy) |
| @@ -2036,7 +2036,7 @@ |
| "addq $(1b-0b),%0\n" |
| : "=a" (res) |
| : "i" (__NR_rt_sigreturn)); |
| - return (void (*)())(uintptr_t)res; |
| + return (void (*)(void))(uintptr_t)res; |
| } |
| #elif defined(__ARM_ARCH_3__) |
| /* Most definitions of _syscallX() neglect to mark "memory" as being |