From 1d2c7796aec004afa9136d969e87b73251c5db49 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Thu, 29 Aug 2013 08:27:25 -0700 Subject: [PATCH] Christoph Mallon: Correct indendation. --- src/filesystem/unix/SDL_sysfilesystem.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/filesystem/unix/SDL_sysfilesystem.c b/src/filesystem/unix/SDL_sysfilesystem.c index c871b1aab58ca..acd3632782e2a 100644 --- a/src/filesystem/unix/SDL_sysfilesystem.c +++ b/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];