mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-25 20:01:50 +00:00
Bug 895168 - Part 6: Stop using LL_DIV in the tree; r=jcranmer
--HG-- extra : rebase_source : 4d269395cb1ad571b17200203fb51d59ea71a4da
This commit is contained in:
parent
9edee6c454
commit
c3dee9bb40
@ -861,8 +861,7 @@ nsToolkitProfileService::CreateTimesInternal(nsIFile* aProfileDir)
|
||||
NS_ENSURE_SUCCESS(rv, rv);
|
||||
|
||||
// We don't care about microsecond resolution.
|
||||
int64_t msec;
|
||||
LL_DIV(msec, PR_Now(), PR_USEC_PER_MSEC);
|
||||
int64_t msec = PR_Now() / PR_USEC_PER_MSEC;
|
||||
|
||||
// Write it out.
|
||||
PRFileDesc *writeFile;
|
||||
|
Loading…
x
Reference in New Issue
Block a user