Browse Source

Use SDL C runtime functions

Sam Lantinga 6 years ago
parent
commit
bd95290075
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/video/kmsdrm/SDL_kmsdrmvideo.c

+ 1 - 1
src/video/kmsdrm/SDL_kmsdrmvideo.c

@@ -102,7 +102,7 @@ static int get_dricount(void)
     if (folder) {
     if (folder) {
         while ((res = readdir(folder))) {
         while ((res = readdir(folder))) {
             int len = SDL_strlen(res->d_name);
             int len = SDL_strlen(res->d_name);
-            if (len > 4 && strncmp(res->d_name, "card", 4) == 0) {
+            if (len > 4 && SDL_strncmp(res->d_name, "card", 4) == 0) {
                 devcount++;
                 devcount++;
             }
             }
         }
         }