From 17de62e9cb624b74377c6a80c0f9aff75f15dcd6 Mon Sep 17 00:00:00 2001 From: Kevin May Date: Mon, 31 Jul 2023 12:16:04 +0100 Subject: IVGCVSW-7787 Fix READ memory access caused by missing printf arguments Signed-off-by: Kevin May Change-Id: Ibea856e1420ad3ff14aef2cdb3d8ee918fb1bcf1 --- ConversionUtils_1_2.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ConversionUtils_1_2.hpp') diff --git a/ConversionUtils_1_2.hpp b/ConversionUtils_1_2.hpp index 5b38b075..670463f4 100644 --- a/ConversionUtils_1_2.hpp +++ b/ConversionUtils_1_2.hpp @@ -2324,7 +2324,7 @@ bool ConvertSpaceToDepth(const HalOperation& operation, const HalModel& model, C if (desc.m_BlockSize <= 1) { - return Fail("%s: Block size must be at least 1 in all dimensions"); + return Fail("%s: Block size must be at least 1 in all dimensions", __func__); } desc.m_DataLayout = OptionalDataLayout(operation, 2, model, data); -- cgit v1.2.1