From fa9569475a9bed6876a7cd5fe41b4c559bd48fac Mon Sep 17 00:00:00 2001 From: Andrew Mikhail Date: Sat, 7 Mar 2026 21:39:50 -0800 Subject: [PATCH] Potential fix for code scanning alert no. 5: Too few arguments to formatting function Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> --- framework/src/vx_graph.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/src/vx_graph.cpp b/framework/src/vx_graph.cpp index 0d22b05..f91395a 100644 --- a/framework/src/vx_graph.cpp +++ b/framework/src/vx_graph.cpp @@ -2746,7 +2746,7 @@ vx_bool Graph::postprocessOutputDataType(vx_uint32 n, vx_uint32 p, vx_reference* *status = VX_ERROR_INVALID_DIMENSION; vxAddLogEntry(reinterpret_cast(this), VX_ERROR_INVALID_DIMENSION, "Node: %s: parameter[%u] has an invalid destination dimention %ux%u", - nodes[n]->kernel->name, p); + nodes[n]->kernel->name, p, remap->dst_width, remap->dst_height); (*num_errors)++; return vx_false_e; //break; }