Bug 1060419 - make AppendPrintf and nsPrintfCString use Printf.h, r=froydnj

MozReview-Commit-ID: 2E8FoiNxU8L
This commit is contained in:
Tom Tromey
2016-12-14 09:32:21 -07:00
parent e014854967
commit e90d95a3f9
55 changed files with 189 additions and 151 deletions

View File

@@ -2327,7 +2327,7 @@ nsOfflineCacheDevice::CreateApplicationCache(const nsACString &group,
// Include the timestamp to guarantee uniqueness across runs, and
// the gNextTemporaryClientID for uniqueness within a second.
clientID.Append(nsPrintfCString("|%016lld|%d",
clientID.Append(nsPrintfCString("|%016" PRId64 "|%d",
now / PR_USEC_PER_SEC,
gNextTemporaryClientID++));