(svn r25117) -Fix [FS#5511]: Silence warning.

This commit is contained in:
frosch 2013-03-24 11:04:58 +00:00
parent 9370e981b9
commit 5046922f61
1 changed files with 1 additions and 1 deletions

View File

@ -263,7 +263,7 @@ GameStrings *LoadTranslations()
/* Scan for other language files */
LanguageScanner scanner(gs, filename);
strecpy(e, "lang" PATHSEP, lastof(filename));
uint len = strlen(filename);
size_t len = strlen(filename);
const char *tar_filename = info->GetTarFile();
TarList::iterator iter;