Skip to content

Commit

Permalink
Fixed a compiler error
Browse files Browse the repository at this point in the history
  • Loading branch information
igorbabaev committed Apr 26, 2018
1 parent b4ee699 commit 5bba69f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/mysql_client_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -20295,9 +20295,10 @@ static void test_bulk_autoinc()

static void print_metadata(MYSQL_RES *rs_metadata, int num_fields)
{
int i;
MYSQL_FIELD *fields= mysql_fetch_fields(rs_metadata);

for (int i = 0; i < num_fields; ++i)
for (i = 0; i < num_fields; ++i)
{
mct_log(" - %d: name: '%s'/'%s'; table: '%s'/'%s'; "
"db: '%s'; catalog: '%s'; length: %d; max_length: %d; "
Expand Down

0 comments on commit 5bba69f

Please sign in to comment.