about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--include/setjmp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/setjmp.h b/include/setjmp.h
index 28ff92e4..7dc72767 100644
--- a/include/setjmp.h
+++ b/include/setjmp.h
@@ -14,7 +14,7 @@ extern "C" {
 typedef struct {
 	jmp_buf __jb;
 	unsigned long __fl;
-	unsigned long __ss[128];
+	unsigned long __ss[128/sizeof(long)];
 } sigjmp_buf[1];
 int sigsetjmp (sigjmp_buf, int);
 void siglongjmp (sigjmp_buf, int);