Fix some enum type warnings.

This commit is contained in:
Unknown W. Brackets
2013-10-19 14:02:47 -07:00
parent 1283a93492
commit e95f55a5fe
4 changed files with 5 additions and 5 deletions

View File

@@ -416,7 +416,7 @@ int DirectoryFileSystem::RenameFile(const std::string &from, const std::string &
#endif
// TODO: Better error codes.
return retValue ? 0 : SCE_KERNEL_ERROR_ERRNO_FILE_ALREADY_EXISTS;
return retValue ? 0 : (int)SCE_KERNEL_ERROR_ERRNO_FILE_ALREADY_EXISTS;
}
bool DirectoryFileSystem::RemoveFile(const std::string &filename) {