mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-13 03:24:26 +00:00
fix mac bustage, and probably a logic error
This commit is contained in:
parent
9d1b9b674f
commit
59ed8b95b7
@ -165,8 +165,7 @@ nsGlobalHistory::matchExpiration(nsIMdbRow *row, PRInt64* expirationDate)
|
||||
if (NS_FAILED(rv))
|
||||
return PR_FALSE;
|
||||
|
||||
PRBool val = LL_CMP(lastVisitedTime, <, expirationDate);
|
||||
return val;
|
||||
return LL_CMP(lastVisitedTime, <, *expirationDate);
|
||||
}
|
||||
|
||||
static PRBool
|
||||
|
Loading…
x
Reference in New Issue
Block a user