From 567857492200692357f03f9765499d3ac779b3b5 Mon Sep 17 00:00:00 2001 From: "jani@rhols221.adsl.netsonic.fi" <> Date: Tue, 16 Dec 2003 16:03:39 +0200 Subject: [PATCH] Fixed parenthesis needed by valgrind-max. --- client/mysqltest.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client/mysqltest.c b/client/mysqltest.c index 08b58f1ccfe..b3b8cd55221 100644 --- a/client/mysqltest.c +++ b/client/mysqltest.c @@ -2453,7 +2453,7 @@ int main(int argc, char **argv) my_bool require_file=0, q_send_flag=0; char save_file[FN_REFLEN]; MY_INIT(argv[0]); - + { DBUG_ENTER("main"); DBUG_PROCESS(argv[0]); @@ -2678,6 +2678,7 @@ int main(int argc, char **argv) free_used_memory(); exit(error ? 1 : 0); return error ? 1 : 0; /* Keep compiler happy */ + } }