Commit a65d1bfb141d30835686ad885683819e8b1ea808

Samuel Venable 2022-11-28T18:37:34

Fix broken solaris build. (missing brace). missing brace.

1
2
3
4
5
6
7
8
9
10
11
12
diff --git a/src/filesystem/unix/SDL_sysfilesystem.c b/src/filesystem/unix/SDL_sysfilesystem.c
index bd11fda..928d769 100644
--- a/src/filesystem/unix/SDL_sysfilesystem.c
+++ b/src/filesystem/unix/SDL_sysfilesystem.c
@@ -246,6 +246,7 @@ SDL_GetBasePath(void)
                 return NULL;
             }
         }
+    }
 #endif
 
     /* If we had access to argv[0] here, we could check it for a path,