Skip to content

Commit 8b72275

Browse files
committed
Fix formatting of headers
1 parent 8927567 commit 8b72275

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

DataFormats/Headers/include/Headers/DataHeaderHelpers.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ struct fmt::formatter<o2::header::DataHeader> {
6969
template <typename FormatContext>
7070
auto format(const o2::header::DataHeader& h, FormatContext& ctx)
7171
{
72-
auto res = fmt::format("Data header version %u, flags: %u\n", h.headerVersion, h.flags) +
72+
auto res = fmt::format("Data header version {}, flags: {}\n", h.headerVersion, h.flags) +
7373
fmt::format(" origin : {}\n", h.dataOrigin.str) +
7474
fmt::format(" serialization: {}\n", h.payloadSerializationMethod.str) +
7575
fmt::format(" description : {}\n", h.dataDescription.str) +

0 commit comments

Comments
 (0)