From bc3deeb269c85ae07fa39e101b7ba2c7c99e94e3 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Marko=20M=C3=A4kel=C3=A4?= <marko.makela@oracle.com>
Date: Thu, 24 Jun 2010 09:01:46 +0300
Subject: [PATCH] ut_ull_create(): Fix a typo in ut_ad(): ULINT32_MASK instead
 of ULINT32_MAX.

---
 storage/innobase/include/ut0byte.ic | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/storage/innobase/include/ut0byte.ic b/storage/innobase/include/ut0byte.ic
index 73af41bfefa..e7908efa41a 100644
--- a/storage/innobase/include/ut0byte.ic
+++ b/storage/innobase/include/ut0byte.ic
@@ -33,8 +33,8 @@ ut_ull_create(
 	ulint	high,	/*!< in: high-order 32 bits */
 	ulint	low)	/*!< in: low-order 32 bits */
 {
-	ut_ad(high <= ULINT32_MAX);
-	ut_ad(low <= ULINT32_MAX);
+	ut_ad(high <= ULINT32_MASK);
+	ut_ad(low <= ULINT32_MASK);
 	return(((ib_uint64_t) high) << 32 | low);
 }