summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2012-07-12 11:00:21 -0400
committerRich Felker <dalias@aerifal.cx>2012-07-12 11:00:21 -0400
commitea4175e73f9ae886d60add33c4473774e8695062 (patch)
treef81a2d9b6416b11cefe393fb46ae5fcf17a073b0
parent5fac93db379cd82bd2d661715b360924eccca82c (diff)
downloadmusl-ea4175e73f9ae886d60add33c4473774e8695062.tar.gz
fix breakage of x86_64 sigaction from recent changes for mips
-rw-r--r--src/internal/ksigaction.h2
1 files changed, 1 insertions, 1 deletions
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];
};