mirror of
https://github.com/MariaDB/server.git
synced 2026-05-10 00:54:30 +02:00
36446: fix Windows warning
This commit is contained in:
parent
5c30d5ae79
commit
fb4e68b687
1 changed files with 1 additions and 1 deletions
|
|
@ -918,7 +918,7 @@ ulonglong getopt_ull_limit_value(ulonglong num, const struct my_option *optp,
|
|||
if (num < (ulonglong) optp->min_value)
|
||||
{
|
||||
num= (ulonglong) optp->min_value;
|
||||
if (old < optp->min_value)
|
||||
if (old < (ulonglong) optp->min_value)
|
||||
adjusted= TRUE;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue