Skip to content

Commit

Permalink
Christoph Mallon: Correct indendation.
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Aug 29, 2013
1 parent 7267ea8 commit 1d2c779
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/filesystem/unix/SDL_sysfilesystem.c
Expand Up @@ -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];
Expand Down

0 comments on commit 1d2c779

Please sign in to comment.