diff options
author | bar@bar.mysql.r18.ru <> | 2003-01-29 11:38:59 +0400 |
---|---|---|
committer | bar@bar.mysql.r18.ru <> | 2003-01-29 11:38:59 +0400 |
commit | b2c97a0f606cf4577bc766483958346a64f4fb42 (patch) | |
tree | b301c088c2664e3541ae2f0276c4b479486d23ce /tests | |
parent | 8673530904c258eaeb55b3aa4053ee3bcff4d0ad (diff) | |
download | mariadb-git-b2c97a0f606cf4577bc766483958346a64f4fb42.tar.gz |
client_test.c:
Compilation failure fix
Diffstat (limited to 'tests')
-rw-r--r-- | tests/client_test.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/client_test.c b/tests/client_test.c index 2bbc4e9a5c3..c67d6b5441d 100644 --- a/tests/client_test.c +++ b/tests/client_test.c @@ -5246,10 +5246,11 @@ static void get_options(int argc, char **argv) *********************************************************/ int main(int argc, char **argv) { - MY_INIT(argv[0]); - get_options(argc,argv); time_t start_time, end_time; double total_time= 0; + + MY_INIT(argv[0]); + get_options(argc,argv); client_connect(); /* connect to server */ |