aboutsummaryrefslogtreecommitdiffstats
path: root/cipher/rmd160.c
diff options
context:
space:
mode:
Diffstat (limited to 'cipher/rmd160.c')
-rw-r--r--cipher/rmd160.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/cipher/rmd160.c b/cipher/rmd160.c
index 1fd0b98f9..e35647af6 100644
--- a/cipher/rmd160.c
+++ b/cipher/rmd160.c
@@ -625,7 +625,11 @@ gnupgext_enum_func( int what, int *sequence, int *class, int *vers )
ret = &func_table[i].value;
break;
default:
+#ifndef __riscos__
ret = func_table[i].func;
+#else /* __riscos__ */
+ ret = (void *) func_table[i].func;
+#endif /* __riscos__ */
break;
}
i++;