소스 검색

Formatting

Peter Limkilde Svendsen 5 년 전
부모
커밋
8b975877e6
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/header/unistd/mod.rs

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

@@ -340,11 +340,11 @@ pub extern "C" fn getpagesize() -> c_int {
         Err(_) => {
             /* Behavior not specified by POSIX for this case. The -1
              * value mimics sysconf()'s behavior, though.
-             * 
+             *
              * As specified for the limits.h header, the minimum
              * acceptable value for {PAGESIZE} is 1. The -1 value thus
              * cannot be mistaken for an acceptable value.
-             * 
+             *
              * POSIX does not specify any possible errors for this
              * function, hence no errno setting. */
             -1