diff --git a/vlib/crypto/rand/rand_default.c.v b/vlib/crypto/rand/rand_default.c.v index 366757971c..2e1e82365e 100644 --- a/vlib/crypto/rand/rand_default.c.v +++ b/vlib/crypto/rand/rand_default.c.v @@ -5,5 +5,5 @@ module rand // read returns an array of `bytes_needed` random bytes read from the OS. pub fn read(bytes_needed int) ?[]byte { - return error('crypto.read is not implemented on this platform') + return error('rand.read is not implemented on this platform') }