aboutsummaryrefslogtreecommitdiffstats
path: root/src/librandom/unirandom_readb.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/librandom/unirandom_readb.c')
-rw-r--r--src/librandom/unirandom_readb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librandom/unirandom_readb.c b/src/librandom/unirandom_readb.c
index cbe45a6..605e467 100644
--- a/src/librandom/unirandom_readb.c
+++ b/src/librandom/unirandom_readb.c
@@ -3,7 +3,7 @@
#include <errno.h>
#include <skalibs/unirandom.h>
-unsigned int unirandom_readb (unirandom_ref u, char *s, unsigned int n)
+unsigned int unirandom_readb (unirandom *u, char *s, unsigned int n)
{
if (!u->initted && !unirandom_init(u)) return 0 ;
return (*u->readb)(&u->data, s, n) ;