Commit d04d8aa6 authored by Sergei Golubchik's avatar Sergei Golubchik

fix a warning

parent be129162
...@@ -5207,7 +5207,7 @@ int init_partitioned_key_cache(PARTITIONED_KEY_CACHE_CB *keycache, ...@@ -5207,7 +5207,7 @@ int init_partitioned_key_cache(PARTITIONED_KEY_CACHE_CB *keycache,
my_free(partition, MYF(0)); my_free(partition, MYF(0));
partition= 0; partition= 0;
} }
if (i == 0 && cnt < 0 || i > 0) if ((i == 0 && cnt < 0) || i > 0)
{ {
/* /*
Here we have two cases: Here we have two cases:
......
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