IR/GCOV.cpp: Use PRIu64 as format string with uint64_t.

llvm-svn: 194693
This commit is contained in:
NAKAMURA Takumi 2013-11-14 11:45:04 +00:00
parent 3b55196b15
commit 3241dc42be
1 changed files with 1 additions and 1 deletions

View File

@ -299,7 +299,7 @@ void FileInfo::print(raw_fd_ostream &OS, StringRef gcnoFile,
if (L[i] == 0)
OS << " #####:";
else
OS << format("%9lu:", L[i]);
OS << format("%9" PRIu64 ":", L[i]);
} else {
OS << " -:";
}