Commit c9c6852f84530522e6181761dd021093d180255d

Ryan C. Gordon 2013-08-24T21:15:10

Minor FreeBSD code cleanup.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
diff --git a/src/filesystem/unix/SDL_sysfilesystem.c b/src/filesystem/unix/SDL_sysfilesystem.c
index d3a3a06..b3e5f5f 100644
--- a/src/filesystem/unix/SDL_sysfilesystem.c
+++ b/src/filesystem/unix/SDL_sysfilesystem.c
@@ -82,11 +82,7 @@ SDL_GetBasePath(void)
 #if defined(__FREEBSD__)
     char fullpath[PATH_MAX];
     size_t buflen = sizeof (fullpath);
-    int mib[4];
-    mib[0] = CTL_KERN;
-    mib[1] = KERN_PROC;
-    mib[2] = KERN_PROC_PATHNAME;
-    mib[3] = -1;
+    const int mib[4] = { CTL_KERN, KERN_PROC, KERN_PROC_PATHNAME, -1 };
     if (sysctl(mib, 4, fullpath, &buflen, NULL, 0) != -1) {
         retval = SDL_strdup(fullpath);
         if (!retval) {