Removing useless mysql_field_seek

parent 718d3a3c
...@@ -2228,7 +2228,7 @@ print_warnings() ...@@ -2228,7 +2228,7 @@ print_warnings()
/* Bail out when no warnings */ /* Bail out when no warnings */
my_ulonglong num_rows = mysql_num_rows(result); my_ulonglong num_rows = mysql_num_rows(result);
if( num_rows == 0 ) if (num_rows == 0)
{ {
mysql_free_result(result); mysql_free_result(result);
return; return;
...@@ -2237,7 +2237,6 @@ print_warnings() ...@@ -2237,7 +2237,6 @@ print_warnings()
/* Print the warnings */ /* Print the warnings */
while ((cur= mysql_fetch_row(result))) while ((cur= mysql_fetch_row(result)))
{ {
mysql_field_seek(result, 0);
tee_fprintf(PAGER, "%s (Code %s): %s\n", cur[0], cur[1], cur[2]); tee_fprintf(PAGER, "%s (Code %s): %s\n", cur[0], cur[1], cur[2]);
} }
mysql_free_result(result); mysql_free_result(result);
......
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