aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcamsn0w <camhconnell@gmail.com>2021-09-07 04:43:30 -0600
committerDan Cross <crossd@gmail.com>2022-07-26 18:27:34 -0400
commit005ee081d50b14a9a12a5b93f4a8760d7700e032 (patch)
tree0f0655aee4b6983c9a7d277563c2e7a2b730a906
parent8d5bcf7e1e6c7c3ee9b833da4993776f005d6e6b (diff)
Added a paren to fix a warning in u.h
-rw-r--r--include/u.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/u.h b/include/u.h
index 856e10f4..3d779483 100644
--- a/include/u.h
+++ b/include/u.h
@@ -62,7 +62,7 @@ extern "C" {
#define _NEEDUINT 1
#define _NEEDULONG 1
-typedef long p9jmp_buf[sizeof(sigjmp_buf)/sizeof(long)];
+typedef long p9jmp_buf[sizeof(sigjmp_buf)/(sizeof(long))];
#if defined(__linux__)
# include <sys/types.h>