Skip to content

Commit 9ecf630

Browse files
ktfdavidrohr
authored andcommitted
DPL: fix warning
1 parent b4ee1c3 commit 9ecf630

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Framework/AODMerger/src/aodMerger.cxx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
#include <TLeaf.h>
2727

2828
#include "aodMerger.h"
29+
#include <cinttypes>
2930

3031
// AOD merger with correct index rewriting
3132
// No need to know the datamodel because the branch names follow a canonical standard (identified by fIndex)
@@ -450,7 +451,7 @@ int main(int argc, char* argv[])
450451
}
451452
if (totalCompressed > 0 && totalUncompressed > 0) {
452453
for (auto const& tree : sizeCompressed) {
453-
printf(" Tree %20s | Compressed: %12llu (%2.0f%%) | Uncompressed: %12llu (%2.0f%%)\n", tree.first.c_str(), tree.second, 100.0 * tree.second / totalCompressed, sizeUncompressed[tree.first], 100.0 * sizeUncompressed[tree.first] / totalUncompressed);
454+
printf(" Tree %20s | Compressed: %12" PRIu64 " (%2.0f%%) | Uncompressed: %12" PRIu64 " (%2.0f%%)\n", tree.first.c_str(), tree.second, 100.0 * tree.second / totalCompressed, sizeUncompressed[tree.first], 100.0 * sizeUncompressed[tree.first] / totalUncompressed);
454455
}
455456
}
456457
}

0 commit comments

Comments
 (0)