summaryrefslogtreecommitdiff
path: root/client/mysqlcheck.c
diff options
context:
space:
mode:
authorserg@serg.mylan <>2004-09-07 15:18:53 +0200
committerserg@serg.mylan <>2004-09-07 15:18:53 +0200
commit413a8753e2f7582b0a4a0716014a9e260b20b9c8 (patch)
treeeb69e64fb069e7468a92e59eca620860f68aff61 /client/mysqlcheck.c
parent30b7504330171890858d40e875b38d0a44c6cd9f (diff)
parent707def6fd0914e673cd9bde1271a59de2af5ef2c (diff)
downloadmariadb-git-413a8753e2f7582b0a4a0716014a9e260b20b9c8.tar.gz
merged
Diffstat (limited to 'client/mysqlcheck.c')
-rw-r--r--client/mysqlcheck.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/client/mysqlcheck.c b/client/mysqlcheck.c
index b072d1c86fe..bcfceb74f14 100644
--- a/client/mysqlcheck.c
+++ b/client/mysqlcheck.c
@@ -436,18 +436,18 @@ static int process_all_tables_in_db(char *database)
LINT_INIT(res);
if (use_db(database))
return 1;
- if (!(mysql_query(sock, "SHOW TABLES") ||
- (res = mysql_store_result(sock))))
+ if (mysql_query(sock, "SHOW TABLES") ||
+ !((res= mysql_store_result(sock))))
return 1;
if (opt_all_in_1)
{
- /*
+ /*
We need table list in form `a`, `b`, `c`
that's why we need 4 more chars added to to each table name
space is for more readable output in logs and in case of error
*/
-
+
char *tables, *end;
uint tot_length = 0;