Bug 895168 - Part 6: Stop using LL_DIV in the tree; r=jcranmer

--HG--
extra : rebase_source : 4d269395cb1ad571b17200203fb51d59ea71a4da
This commit is contained in:
Ehsan Akhgari 2013-07-18 16:50:43 -04:00
parent 9edee6c454
commit c3dee9bb40

View File

@ -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;