ClangTidy: add missing unsigned specifier

This commit is contained in:
Marius Messerschmidt
2023-11-17 22:27:19 +01:00
parent 42f647378a
commit 5162b4fdec
+1 -1
View File
@@ -94,7 +94,7 @@ bool ffPathExists(const char* path, FFPathType type)
if(stat(path, &fileStat) != 0)
return false;
int mode = fileStat.st_mode & S_IFMT;
unsigned int mode = fileStat.st_mode & S_IFMT;
if(type & FF_PATHTYPE_REGULAR && mode == S_IFREG)
return true;