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