aboutsummaryrefslogtreecommitdiff
path: root/src/njs_clang.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/njs_clang.h')
-rw-r--r--src/njs_clang.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/njs_clang.h b/src/njs_clang.h
index 2bd45a74..af9f3350 100644
--- a/src/njs_clang.h
+++ b/src/njs_clang.h
@@ -111,7 +111,7 @@ njs_leading_zeros64(uint64_t x)
n = 0;
- while ((x & 0x8000000000000000) == 0) {
+ while ((x & 0x8000000000000000ULL) == 0) {
n++;
x <<= 1;
}