Fix some incorrect format specifiers.

This commit is contained in:
Kevin Backhouse
2022-07-05 17:50:27 +01:00
committed by Rosen Penev
parent fc0e0506a1
commit 1ada360774
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -565,7 +565,7 @@ void BmffImage::parseCr3Preview(DataBuf& data, std::ostream& out, bool bTrace, u
nativePreviews_.push_back(nativePreview);
if (bTrace) {
out << Internal::stringFormat("width,height,size = %u,%u,%u", nativePreview.width_, nativePreview.height_,
out << Internal::stringFormat("width,height,size = %zu,%zu,%zu", nativePreview.width_, nativePreview.height_,
nativePreview.size_);
}
}