summaryrefslogtreecommitdiff
path: root/innobase/include/ut0byte.h
diff options
context:
space:
mode:
Diffstat (limited to 'innobase/include/ut0byte.h')
-rw-r--r--innobase/include/ut0byte.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/innobase/include/ut0byte.h b/innobase/include/ut0byte.h
index 4fb45221899..4274956421e 100644
--- a/innobase/include/ut0byte.h
+++ b/innobase/include/ut0byte.h
@@ -152,7 +152,7 @@ ut_dulint_align_up(
Increments a dulint variable by 1. */
#define UT_DULINT_INC(D)\
{\
- if ((D).low == 0xFFFFFFFF) {\
+ if ((D).low == 0xFFFFFFFFUL) {\
(D).high = (D).high + 1;\
(D).low = 0;\
} else {\