From f044f20f15de9368426b87536a568c0778adc252 Mon Sep 17 00:00:00 2001 From: Brian Wellington Date: Mon, 11 Oct 1999 22:00:27 +0000 Subject: [PATCH] removed initializer warning --- lib/dns/sec/openssl/bn_lib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/dns/sec/openssl/bn_lib.c b/lib/dns/sec/openssl/bn_lib.c index ee85603024..26b11c4172 100644 --- a/lib/dns/sec/openssl/bn_lib.c +++ b/lib/dns/sec/openssl/bn_lib.c @@ -124,7 +124,7 @@ int BN_get_params(int which) BIGNUM *BN_value_one(void) { static BN_ULONG data_one=1L; - static BIGNUM const_one={&data_one,1,1,0}; + static BIGNUM const_one={&data_one,1,1,0,0}; return(&const_one); }