Commit 6efe0c34 authored by Tatiana A. Nurnberg's avatar Tatiana A. Nurnberg

36446: fix Windows warning

parent bacb0357
......@@ -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;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment