From 2c059d58d963bf713d33aa4a938133ddd9eecd41 Mon Sep 17 00:00:00 2001 From: Nils Larsch Date: Sat, 11 Mar 2006 11:58:47 +0000 Subject: fix "missing initializer" warning --- crypto/dso/dso_null.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'crypto/dso') diff --git a/crypto/dso/dso_null.c b/crypto/dso/dso_null.c index a213f93088..49d842d1f5 100644 --- a/crypto/dso/dso_null.c +++ b/crypto/dso/dso_null.c @@ -79,7 +79,8 @@ static DSO_METHOD dso_meth_null = { NULL, /* dso_merger */ NULL, /* init */ NULL, /* finish */ - NULL /* pathbyaddr */ + NULL, /* pathbyaddr */ + NULL /* globallookup */ }; DSO_METHOD *DSO_METHOD_null(void) -- cgit v1.2.3