From 49d8fa1058aaf23c29e074b2314492ae40d2f557 Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Tue, 21 Feb 2017 12:05:07 +0000 Subject: Types change: big pass on libstddjb and libunixonacid libdatastruct still missing, library still not functional --- src/librandom/random_string.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/librandom/random_string.c') diff --git a/src/librandom/random_string.c b/src/librandom/random_string.c index 5053824..cd2a0aa 100644 --- a/src/librandom/random_string.c +++ b/src/librandom/random_string.c @@ -31,7 +31,7 @@ void random_string (char *s, size_t n) { while (n) { - register int r = getrandom(s, n, 0) ; + int r = getrandom(s, n, 0) ; if (r >= 0) { s += r ; -- cgit v1.3.1