Skip to content

Commit

Permalink
Fix format specifier.
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinbackhouse committed Jul 23, 2021
1 parent 43d95b8 commit 5eb4642
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bmffimage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ namespace Exiv2
if ( bTrace ) {
bLF = true;
out << indent(depth) << "Exiv2::BmffImage::boxHandler: " << toAscii(box_type)
<< Internal::stringFormat(" %8ld->%u ", address, box_length);
<< Internal::stringFormat(" %8ld->%lu ", address, box_length);
}

if (box_length == 1) {
Expand Down

0 comments on commit 5eb4642

Please sign in to comment.