=== modified file 'tests/mysql_client_test.c' --- tests/mysql_client_test.c 2013-02-26 08:24:00 +0000 +++ tests/mysql_client_test.c 2013-05-07 23:00:13 +0000 @@ -12584,8 +12584,8 @@ /* now we should be able to fetch the results again */ /* but mysql_stmt_fetch returns MYSQL_NO_DATA */ - while(!(rc= mysql_stmt_fetch(stmt))) - if (!opt_silent) + if (!opt_silent) + while(!(rc= mysql_stmt_fetch(stmt))) printf("fetched result after seek:%ld\n", Data); DIE_UNLESS(rc == MYSQL_NO_DATA);