소스 검색

Christoph Mallon: Correct indendation.

Sam Lantinga 12 년 전
부모
커밋
1d2c7796ae
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 4 4
      src/filesystem/unix/SDL_sysfilesystem.c

+ 4 - 4
src/filesystem/unix/SDL_sysfilesystem.c

@@ -105,13 +105,13 @@ SDL_GetBasePath(void)
 
     /* is a Linux-style /proc filesystem available? */
     if (!retval && (access("/proc", F_OK) == 0)) {
-        #if defined(__FREEBSD__)
+#if defined(__FREEBSD__)
         retval = readSymLink("/proc/curproc/file");
-        #elif defined(__NETBSD__)
+#elif defined(__NETBSD__)
         retval = readSymLink("/proc/curproc/exe");
-        #else
+#else
         retval = readSymLink("/proc/self/exe");  /* linux. */
-        #endif
+#endif
         if (retval == NULL) {
             /* older kernels don't have /proc/self ... try PID version... */
             char path[64];