diff options
author | Yang Tse <yangsita@gmail.com> | 2007-02-13 02:30:31 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2007-02-13 02:30:31 +0000 |
commit | 5649b738befc3c509136313c914e43b90304a450 (patch) | |
tree | 4d245dcf4e6b35052a2a36cac4c03d175d0076d4 /lib | |
parent | 0f9f6cf1800d7971a71c3dfb323260eaf90f434e (diff) |
compiler warning fix
Diffstat (limited to 'lib')
-rw-r--r-- | lib/sslgen.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/sslgen.c b/lib/sslgen.c index 9043cee29..6b1de1e3c 100644 --- a/lib/sslgen.c +++ b/lib/sslgen.c @@ -517,6 +517,7 @@ struct curl_slist *Curl_ssl_engines_list(struct SessionHandle *data) * would just confuse things */ (void)data; return NULL; +#else (void)data; return NULL; #endif /* USE_NSS */ |