зеркало из https://github.com/mozilla/pjs.git
Bug 469951 - using %lld PR_scanf format directly on a PRTime is not portable. r=sdwilsh
This commit is contained in:
Родитель
c0f79ce13f
Коммит
f1358964f7
|
@ -148,12 +148,12 @@ AddToHistoryCB(const nsCSubstring &aRowID,
|
|||
visitCount = 1;
|
||||
}
|
||||
|
||||
PRTime lastVisitDate;
|
||||
PRInt64 lastVisitDate;
|
||||
if (PR_sscanf(values[kLastVisitColumn].get(), "%lld", &lastVisitDate) != 1) {
|
||||
lastVisitDate = -1;
|
||||
}
|
||||
|
||||
PRTime firstVisitDate;
|
||||
PRInt64 firstVisitDate;
|
||||
if (PR_sscanf(values[kFirstVisitColumn].get(), "%lld", &firstVisitDate) != 1) {
|
||||
firstVisitDate = -1;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче