Browse Source

locale: Fixed compiler warning on Visual Studio.

Ryan C. Gordon 4 years ago
parent
commit
ba11122ea0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/locale/windows/SDL_syslocale.c

+ 1 - 1
src/locale/windows/SDL_syslocale.c

@@ -78,7 +78,7 @@ SDL_SYS_GetPreferredLocales_vista(char *buf, size_t buflen)
     if (!pGetUserPreferredUILanguages(MUI_LANGUAGE_NAME, &numlangs, wbuf, &wbuflen)) {
         SDL_SYS_GetPreferredLocales_winxp(buf, buflen);  /* oh well, try the fallback. */
     } else {
-        const ULONG endidx = SDL_min(buflen, wbuflen - 1);
+        const ULONG endidx = (ULONG) SDL_min(buflen, wbuflen - 1);
         ULONG str_start = 0;
         ULONG i;
         for (i = 0; i < endidx; i++) {