summaryrefslogtreecommitdiffstats
path: root/include/jemalloc/internal/jemalloc_internal_macros.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/jemalloc/internal/jemalloc_internal_macros.h')
-rw-r--r--include/jemalloc/internal/jemalloc_internal_macros.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/jemalloc/internal/jemalloc_internal_macros.h b/include/jemalloc/internal/jemalloc_internal_macros.h
index 38e2886..a08ba77 100644
--- a/include/jemalloc/internal/jemalloc_internal_macros.h
+++ b/include/jemalloc/internal/jemalloc_internal_macros.h
@@ -44,9 +44,9 @@
#define QI(q) ((int64_t)q)
#define KZU(z) ZU(z##ULL)
-#define KZI(z) ZI(z##ULL)
+#define KZI(z) ZI(z##LL)
#define KQU(q) QU(q##ULL)
-#define KQI(q) QI(q##ULL)
+#define KQI(q) QI(q##LL)
#ifndef __DECONST
# define __DECONST(type, var) ((type)(uintptr_t)(const void *)(var))