From 108670b30994f5c2d92b550d4bf5648caaa169ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20Kov=C3=A1=C5=99?= Date: Thu, 25 Feb 2021 11:18:51 +0100 Subject: [PATCH] Corrected format string --- src/bmffimage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bmffimage.cpp b/src/bmffimage.cpp index 42b4dde5..28973ee2 100644 --- a/src/bmffimage.cpp +++ b/src/bmffimage.cpp @@ -100,7 +100,7 @@ namespace Exiv2 std::string toString(long address = 0) const { - return Internal::stringFormat("ID = %d from,length = %d,%d", ID_, start_ + address, length_); + return Internal::stringFormat("ID = %d from,length = %ld,%d", ID_, start_ + address, length_); } }; // class Iloc