From 7d9b25cacf76cad71be16532204af2464683513a Mon Sep 17 00:00:00 2001 From: "dp%netscape.com" Date: Sat, 6 Feb 1999 21:24:52 +0000 Subject: [PATCH] PRTime is 64 bit. Cant use ==. Using LL_EQ macro. --- xpcom/components/nsRepository.cpp | 2 +- xpcom/src/nsRepository.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/xpcom/components/nsRepository.cpp b/xpcom/components/nsRepository.cpp index 40d27e1202bf..0fc51ca9fde5 100644 --- a/xpcom/components/nsRepository.cpp +++ b/xpcom/components/nsRepository.cpp @@ -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. diff --git a/xpcom/src/nsRepository.cpp b/xpcom/src/nsRepository.cpp index 40d27e1202bf..0fc51ca9fde5 100644 --- a/xpcom/src/nsRepository.cpp +++ b/xpcom/src/nsRepository.cpp @@ -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.