Commit 79b0f8d3 authored by unknown's avatar unknown

Fix warning

parent 26e4ea62
......@@ -663,7 +663,7 @@ static void show_warnings_before_error(MYSQL* mysql)
for(i= 0; i < num_fields; i++)
{
fprintf(stderr, "%.*s ", lengths[i],
fprintf(stderr, "%.*s ", (int)lengths[i],
row[i] ? row[i] : "NULL");
}
fprintf(stderr, "\n");
......
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