mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Added a cast. Fix for Metrowerks compiler.
This commit is contained in:
@ -1033,7 +1033,7 @@ int decimal2ulonglong(decimal_t *from, ulonglong *to)
|
|||||||
{
|
{
|
||||||
ulonglong y=x;
|
ulonglong y=x;
|
||||||
x=x*DIG_BASE + *buf++;
|
x=x*DIG_BASE + *buf++;
|
||||||
if (unlikely(y > (ULONGLONG_MAX/DIG_BASE) || x < y))
|
if (unlikely(y > ((ulonglong) ULONGLONG_MAX/DIG_BASE) || x < y))
|
||||||
{
|
{
|
||||||
*to=y;
|
*to=y;
|
||||||
return E_DEC_OVERFLOW;
|
return E_DEC_OVERFLOW;
|
||||||
|
Reference in New Issue
Block a user