1
0
mirror of https://github.com/MariaDB/server.git synced 2025-10-27 05:56:07 +03:00

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

This commit is contained in:
Marko Mäkelä
2010-06-24 09:01:46 +03:00
parent d26a9ed0d3
commit bc3deeb269

View File

@@ -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);
}