Skip to content

Commit

Permalink
Use %llu to print a 64 bit number. Should fix the ARM bots.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186113 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
espindola committed Jul 11, 2013
1 parent 3a942ac commit 4d5b0da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/llvm-ar/llvm-ar.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ doDisplayTable(std::string* ErrMsg) {
printMode(mode & 007);
outs() << ' ' << I->getUser();
outs() << "/" << I->getGroup();
outs() << ' ' << format("%6u", I->getSize());
outs() << ' ' << format("%6llu", I->getSize());
sys::TimeValue ModTime = I->getModTime();
outs() << " " << ModTime.str();
outs() << " " << I->getPath().str() << "\n";
Expand Down

0 comments on commit 4d5b0da

Please sign in to comment.