From d716e83021d62b49fb5e6438db6bd36217df5627 Mon Sep 17 00:00:00 2001 From: David Lawrence Date: Thu, 31 May 2001 11:00:40 +0000 Subject: [PATCH] initialize "type" to quiet compiler warning --- bin/tests/cfg_test.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/tests/cfg_test.c b/bin/tests/cfg_test.c index 668dca2129..fd496b51e2 100644 --- a/bin/tests/cfg_test.c +++ b/bin/tests/cfg_test.c @@ -15,7 +15,7 @@ * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: cfg_test.c,v 1.8 2001/05/02 17:43:42 gson Exp $ */ +/* $Id: cfg_test.c,v 1.9 2001/05/31 11:00:40 tale Exp $ */ #include @@ -65,7 +65,7 @@ main(int argc, char **argv) { isc_logdestination_t destination; cfg_parser_t *pctx = NULL; cfg_obj_t *cfg = NULL; - cfg_type_t *type; + cfg_type_t *type = NULL; RUNTIME_CHECK(isc_mem_create(0, 0, &mctx) == ISC_R_SUCCESS);