Explorar el Código

Fix inaccurate comment

Peter Limkilde Svendsen hace 5 años
padre
commit
f8cf25d76c
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      src/header/stdlib/mod.rs

+ 2 - 2
src/header/stdlib/mod.rs

@@ -1010,8 +1010,8 @@ pub unsafe extern "C" fn unsetenv(key: *const c_char) -> c_int {
 
 #[no_mangle]
 pub unsafe extern "C" fn valloc(size: size_t) -> *mut c_void {
-    /* _SC_PAGESIZE is a c_long and may in principle not convert
-     * correctly to a size_t. */
+    /* sysconf(_SC_PAGESIZE) is a c_long and may in principle not
+     * convert correctly to a size_t. */
     match size_t::try_from(sysconf(_SC_PAGESIZE)) {
         Ok(page_size) => {
             /* valloc() is not supposed to be able to set errno to