From: Adam Dickmeiss Date: Fri, 27 Jan 2006 19:01:56 +0000 (+0000) Subject: Annotate X-Git-Tag: YAZ.2.1.12~16 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=f332636bbd13c0d1b17ce5be702422b9f8fe56dd Annotate --- diff --git a/src/test.c b/src/test.c index 79083d1..0dc8bdf 100644 --- a/src/test.c +++ b/src/test.c @@ -2,7 +2,7 @@ * Copyright (C) 1995-2005, Index Data ApS * See the file LICENSE for details. * - * $Id: test.c,v 1.1 2006-01-27 18:58:58 adam Exp $ + * $Id: test.c,v 1.2 2006-01-27 19:01:56 adam Exp $ */ #if HAVE_CONFIG_H #include @@ -13,7 +13,7 @@ #include -static FILE *test_fout; +static FILE *test_fout = 0; /* can't init this to stderr on some systems */ static int test_number = 0; static int test_verbose = 0; @@ -23,7 +23,6 @@ void yaz_check_init1(int *argc_p, char ***argv_p) int argc = *argc_p; char **argv = *argv_p; - test_fout = 0; for (i = 1; i= 7 && !memcmp(argv[i], "--test-", 7)) @@ -67,8 +66,8 @@ void yaz_check_init1(int *argc_p, char ***argv_p) --i; *argc_p -= i; *argv_p += i; - if (!test_fout) - test_fout = stdout; + if (!test_fout) + test_fout = stdout; /* by default, set output to this */ } void yaz_check_print1(int type, const char *file, int line, const char *expr)