From 0c5b90281adaef44cc428df303cd54a0dee568b4 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Sun, 11 Sep 2005 13:32:39 +0000 Subject: [PATCH] Put declarations before statements to make code work with older C compilers. --- zoom/zoom-benchmark.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/zoom/zoom-benchmark.c b/zoom/zoom-benchmark.c index e298129..79b533e 100644 --- a/zoom/zoom-benchmark.c +++ b/zoom/zoom-benchmark.c @@ -1,5 +1,5 @@ /* - * $Id: zoom-benchmark.c,v 1.2 2005-09-09 13:51:43 marc Exp $ + * $Id: zoom-benchmark.c,v 1.3 2005-09-11 13:32:39 adam Exp $ * * Asynchronous multi-target client doing search and piggyback retrieval */ @@ -159,10 +159,10 @@ void read_params(int argc, char **argv, struct parameters_t *p_parameters){ int main(int argc, char **argv) { - init_statics(); - struct time_type time; + init_statics(); + read_params(argc, argv, ¶meters); ZOOM_connection z[parameters.concurrent]; -- 1.7.10.4