Fix type warning

This commit is contained in:
Alexander Batalov 2022-09-24 19:43:27 +03:00
parent 443070226f
commit fd9843f8dc
1 changed files with 1 additions and 1 deletions

View File

@ -1063,7 +1063,7 @@ int showSaveFileDialog(char* title, char** fileList, char* dest, int fileListLen
char fileNameCopy[32];
strncpy(fileNameCopy, dest, 32);
int fileNameCopyLength = strlen(fileNameCopy);
size_t fileNameCopyLength = strlen(fileNameCopy);
fileNameCopy[fileNameCopyLength + 1] = '\0';
fileNameCopy[fileNameCopyLength] = ' ';