PRTime is 64 bit. Cant use ==. Using LL_EQ macro.

This commit is contained in:
dp%netscape.com 1999-02-06 21:24:52 +00:00
Родитель ff1f3604d3
Коммит 7d9b25cacf
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -831,7 +831,7 @@ nsresult nsRepository::SyncComponentsInFile(const char *fullname)
}
// We already have seen this dll. Check if this dll changed
if (dll->GetLastModifiedTime() != statbuf.modifyTime &&
if (LL_EQ(dll->GetLastModifiedTime(), statbuf.modifyTime) &&
LL_EQ(dll->GetSize(), statbuf.size))
{
// Dll hasn't changed. Skip.

Просмотреть файл

@ -831,7 +831,7 @@ nsresult nsRepository::SyncComponentsInFile(const char *fullname)
}
// We already have seen this dll. Check if this dll changed
if (dll->GetLastModifiedTime() != statbuf.modifyTime &&
if (LL_EQ(dll->GetLastModifiedTime(), statbuf.modifyTime) &&
LL_EQ(dll->GetSize(), statbuf.size))
{
// Dll hasn't changed. Skip.