1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

Use %llu to print a 64 bit number. Should fix the ARM bots.

llvm-svn: 186113
This commit is contained in:
Rafael Espindola 2013-07-11 20:01:30 +00:00
parent f9a1792687
commit e803be2a6b

View File

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