summaryrefslogtreecommitdiffstats
path: root/crypto/dso
diff options
context:
space:
mode:
authorNils Larsch <nils@openssl.org>2006-03-11 11:58:47 +0000
committerNils Larsch <nils@openssl.org>2006-03-11 11:58:47 +0000
commit2c059d58d963bf713d33aa4a938133ddd9eecd41 (patch)
treebc42b9bf83fda584e2b7d14b04b2b14f3087a5bb /crypto/dso
parentcd346d3e22c2821333e28b3ab33e5960efdd0947 (diff)
fix "missing initializer" warning
Diffstat (limited to 'crypto/dso')
-rw-r--r--crypto/dso/dso_null.c3
1 files changed, 2 insertions, 1 deletions
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)