diff --git a/src/native/entropy_cpu_stubs.c b/src/native/entropy_cpu_stubs.c index 7a1e06e9..be275407 100644 --- a/src/native/entropy_cpu_stubs.c +++ b/src/native/entropy_cpu_stubs.c @@ -241,7 +241,7 @@ CAMLprim value mc_cpu_rdseed (value buf, value off) { /* ARM: CPU-assisted randomness here. */ (void)buf; (void)off; - return Val_bool (0); + return Val_false; #endif } @@ -257,7 +257,7 @@ CAMLprim value mc_cpu_rdrand (value buf, value off) { /* ARM: CPU-assisted randomness here. */ (void)buf; (void)off; - return Val_bool (0); + return Val_false; #endif }