aboutsummaryrefslogtreecommitdiffstats
path: root/cipher/idea-stub.c
diff options
context:
space:
mode:
authorDavid Shaw <[email protected]>2005-12-06 20:27:43 +0000
committerDavid Shaw <[email protected]>2005-12-06 20:27:43 +0000
commit8a0cf1d2a342abbcb26dd2cc3397a848123d63fc (patch)
tree68a90779c4fbb4e762d12c1491ee5c8033321030 /cipher/idea-stub.c
parent* curl-shim.c (curl_easy_perform): Fix build warning (code before (diff)
downloadgnupg-8a0cf1d2a342abbcb26dd2cc3397a848123d63fc.tar.gz
gnupg-8a0cf1d2a342abbcb26dd2cc3397a848123d63fc.zip
* idea-stub.c (load_module): Not legal to return a void * as a function
pointer.
Diffstat (limited to 'cipher/idea-stub.c')
-rw-r--r--cipher/idea-stub.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cipher/idea-stub.c b/cipher/idea-stub.c
index fc19baeed..55b5cb506 100644
--- a/cipher/idea-stub.c
+++ b/cipher/idea-stub.c
@@ -138,7 +138,7 @@ load_module (const char *name)
if ((err=dlerror()))
goto failure;
- return sym;
+ return (INFO_FNC)sym;
failure:
log_info ("invalid module `%s': %s\n", name?name:"???", err?err:"???");