aboutsummaryrefslogtreecommitdiff
path: root/toys/other/pwgen.c
diff options
context:
space:
mode:
Diffstat (limited to 'toys/other/pwgen.c')
-rw-r--r--toys/other/pwgen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/other/pwgen.c b/toys/other/pwgen.c
index c34daf5a..73627561 100644
--- a/toys/other/pwgen.c
+++ b/toys/other/pwgen.c
@@ -51,7 +51,7 @@ void pwgen_main(void)
for (jj = 0; jj<count; jj++) {
for (ii = 0; ii<length;) {
// Don't fetch more random than necessary, give each byte 2 tries to fit
- if (!rand) xgetrandom(randbuf, rand = sizeof(randbuf), 0);
+ if (!rand) xgetrandom(randbuf, rand = sizeof(randbuf));
c = 33+randbuf[--rand]%93; // remainder 69 makes >102 less likely
if (FLAG(s)) randbuf[rand] = 0;