Commit e9beb6d0 authored by unknown's avatar unknown

Cleanups based on feedback from Monty.


sql/sql_show.cc:
  Use int10_to_str() instead of my_snprintf() for formatting number
parent 686d0ba1
...@@ -1362,13 +1362,12 @@ static bool show_status_array(THD *thd, const char *wild, ...@@ -1362,13 +1362,12 @@ static bool show_status_array(THD *thd, const char *wild,
{ {
if (bitmap_is_set(bitmap, i)) if (bitmap_is_set(bitmap, i))
{ {
end+= my_snprintf((char *)end, sizeof(buff) - (end - buff), end= int10_to_str(i, (char*) end, 10);
"%d,", i); *(char*) end++= ',';
} }
} }
if (end != buff) if (end != buff)
end--; // Remove last ',' end--; // Remove last ','
*(char *)end= 0;
} }
break; break;
} }
......
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