Commit 4513de31 authored by Marko Mäkelä's avatar Marko Mäkelä

Remove a "register" keyword from C++ code

The register keyword has no effect in C++, and it has been deprecated
in newer versions of the standard.
parent a536664e
......@@ -1514,7 +1514,7 @@ int merge_many_buff(Sort_param *param, uchar *sort_buffer,
ulong read_to_buffer(IO_CACHE *fromfile, BUFFPEK *buffpek,
uint rec_length)
{
register ulong count;
ulong count;
ulong length= 0;
if ((count= (ulong) MY_MIN((ha_rows) buffpek->max_keys,buffpek->count)))
......
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