Commit bc3deeb2 authored by Marko Mäkelä's avatar Marko Mäkelä

ut_ull_create(): Fix a typo in ut_ad(): ULINT32_MASK instead of ULINT32_MAX.

parent d26a9ed0
...@@ -33,8 +33,8 @@ ut_ull_create( ...@@ -33,8 +33,8 @@ ut_ull_create(
ulint high, /*!< in: high-order 32 bits */ ulint high, /*!< in: high-order 32 bits */
ulint low) /*!< in: low-order 32 bits */ ulint low) /*!< in: low-order 32 bits */
{ {
ut_ad(high <= ULINT32_MAX); ut_ad(high <= ULINT32_MASK);
ut_ad(low <= ULINT32_MAX); ut_ad(low <= ULINT32_MASK);
return(((ib_uint64_t) high) << 32 | low); return(((ib_uint64_t) high) << 32 | low);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment