From 93da32acbb05cfb18e6062494825af0807dd8be0 Mon Sep 17 00:00:00 2001 From: unknown Date: Fri, 8 Apr 2005 16:54:50 +0200 Subject: [PATCH] Removing for-loop in print_warnings() --- client/mysql.cc | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/client/mysql.cc b/client/mysql.cc index 869194e75b6..9a07be07911 100644 --- a/client/mysql.cc +++ b/client/mysql.cc @@ -2243,19 +2243,8 @@ print_warnings() while ((cur= mysql_fetch_row(result))) { mysql_field_seek(result, 0); - /* Format as: : */ - for (uint off= 0; off < mysql_num_fields(result); off++) - { - const char *str= cur[off] ? cur[off] : "NULL"; - field = mysql_fetch_field(result); - tee_fputs(str, PAGER); - tee_fputs(" ", PAGER); - if( off == 1 ) - (void) tee_fputs(": ", PAGER); - } - (void) tee_fputs("\n", PAGER); + tee_fprintf(PAGER, "%s (Code %s): %s\n", cur[0], cur[1], cur[2]); } - tee_fputs("\n", PAGER); mysql_free_result(result); }