mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-01-05 14:38:43 +01:00
Fix type comparison error
This commit is contained in:
parent
b7556bdddf
commit
e4867b5afb
@ -267,7 +267,7 @@ bool CefZipReaderImpl::GetFileInfo() {
|
||||
time.tm_mon = file_info.tmu_date.tm_mon;
|
||||
time.tm_year = file_info.tmu_date.tm_year - 1900; // Years since 1900.
|
||||
filemodified_ = mktime(&time);
|
||||
DCHECK_NE(filemodified_, (size_t)-1);
|
||||
DCHECK_NE(filemodified_, (time_t)-1);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user