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:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user