Cleanups based on feedback from Monty.
sql/sql_show.cc: Use int10_to_str() instead of my_snprintf() for formatting number
This commit is contained in:
parent
686d0ba155
commit
e9beb6d0aa
@ -1362,13 +1362,12 @@ static bool show_status_array(THD *thd, const char *wild,
|
||||
{
|
||||
if (bitmap_is_set(bitmap, i))
|
||||
{
|
||||
end+= my_snprintf((char *)end, sizeof(buff) - (end - buff),
|
||||
"%d,", i);
|
||||
end= int10_to_str(i, (char*) end, 10);
|
||||
*(char*) end++= ',';
|
||||
}
|
||||
}
|
||||
if (end != buff)
|
||||
end--; // Remove last ','
|
||||
*(char *)end= 0;
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user