mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 19:11:46 +01:00
ut_ull_create(): Fix a typo in ut_ad(): ULINT32_MASK instead of ULINT32_MAX.
This commit is contained in:
parent
d26a9ed0d3
commit
bc3deeb269
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue