mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 788021 followup: cast PR_NOW() to int64_t to fix a build failure on OpenBSD. r=jlebar
This commit is contained in:
parent
1aa8941770
commit
e19994e1dd
@ -1149,7 +1149,7 @@ nsMemoryReporterManager::DumpMemoryReportsToFile(
|
||||
// memory report request.
|
||||
nsString identifier(aIdentifier);
|
||||
if (identifier.IsEmpty()) {
|
||||
identifier.AppendInt(PR_Now() / 1000000);
|
||||
identifier.AppendInt(static_cast<int64_t>(PR_Now()) / 1000000);
|
||||
}
|
||||
|
||||
// Kick off memory report dumps in our child processes, if applicable. We
|
||||
|
Loading…
Reference in New Issue
Block a user