Fix /dev/urandom typo

This commit is contained in:
Nekotekina 2017-10-04 08:03:24 +03:00
parent ab4e66a0bf
commit 3d64b65813
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ error_code sys_ss_random_number_generator(u32 arg1, vm::ptr<void> buf, u64 size)
return CELL_EABORT;
}
#else
fs::file rnd{"/dev/random/"};
fs::file rnd{"/dev/urandom"};
if (!rnd || rnd.read(buf.get_ptr(), size) != size)
{