summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/stc/ccommon.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/stc/ccommon.h b/include/stc/ccommon.h
index 6f42bcc1..0cce1610 100644
--- a/include/stc/ccommon.h
+++ b/include/stc/ccommon.h
@@ -174,7 +174,7 @@ STC_INLINE intptr_t cnextpow2(intptr_t n) {
n |= n >> 1, n |= n >> 2;
n |= n >> 4, n |= n >> 8;
n |= n >> 16;
- #if INTPTR_SIZE == INT64_SIZE
+ #if INTPTR_MAX == INT64_MAX
n |= n >> 32;
#endif
return n + 1;