From: Rich Felker Date: Thu, 12 Jul 2012 15:00:21 +0000 (-0400) Subject: fix breakage of x86_64 sigaction from recent changes for mips X-Git-Tag: v0.9.3~34 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=ea4175e73f9ae886d60add33c4473774e8695062;p=oweals%2Fmusl.git fix breakage of x86_64 sigaction from recent changes for mips --- diff --git a/src/internal/ksigaction.h b/src/internal/ksigaction.h index 57f47b3f..9a70f937 100644 --- 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); - unsigned long mask[2]; + unsigned mask[2]; };