diff options
Diffstat (limited to 'cipher/rndegd.c')
-rw-r--r-- | cipher/rndegd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cipher/rndegd.c b/cipher/rndegd.c index 7579ba80e..64226eabb 100644 --- a/cipher/rndegd.c +++ b/cipher/rndegd.c @@ -215,9 +215,9 @@ const char * const gnupgext_version = "RNDEGD ($Revision$)"; static struct { int class; int version; - void *func; + int (*func)(void); } func_table[] = { - { 40, 1, gather_random }, + { 40, 1, (int (*)(void))gather_random }, }; |