Browse Source

Christoph Mallon: Use SDL_arraysize()

Sam Lantinga 11 years ago
parent
commit
7267ea8f8b
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/filesystem/unix/SDL_sysfilesystem.c

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

@@ -84,8 +84,8 @@ SDL_GetBasePath(void)
 #if defined(__FREEBSD__)
     char fullpath[PATH_MAX];
     size_t buflen = sizeof (fullpath);
-    const int mib[4] = { CTL_KERN, KERN_PROC, KERN_PROC_PATHNAME, -1 };
-    if (sysctl(mib, 4, fullpath, &buflen, NULL, 0) != -1) {
+    const int mib[] = { CTL_KERN, KERN_PROC, KERN_PROC_PATHNAME, -1 };
+    if (sysctl(mib, SDL_arraysize(mib), fullpath, &buflen, NULL, 0) != -1) {
         retval = SDL_strdup(fullpath);
         if (!retval) {
             SDL_OutOfMemory();