Commit fb4e68b6 authored by Tatiana A. Nurnberg's avatar Tatiana A. Nurnberg

36446: fix Windows warning

parent 5c30d5ae
...@@ -918,7 +918,7 @@ ulonglong getopt_ull_limit_value(ulonglong num, const struct my_option *optp, ...@@ -918,7 +918,7 @@ ulonglong getopt_ull_limit_value(ulonglong num, const struct my_option *optp,
if (num < (ulonglong) optp->min_value) if (num < (ulonglong) optp->min_value)
{ {
num= (ulonglong) optp->min_value; num= (ulonglong) optp->min_value;
if (old < optp->min_value) if (old < (ulonglong) optp->min_value)
adjusted= TRUE; 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