Skip to content

Commit 9113909

Browse files
Potential fix for code scanning alert no. 5: Too few arguments to formatting function (#35)
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
1 parent e4d037d commit 9113909

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

framework/src/vx_graph.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2746,7 +2746,7 @@ vx_bool Graph::postprocessOutputDataType(vx_uint32 n, vx_uint32 p, vx_reference*
27462746
*status = VX_ERROR_INVALID_DIMENSION;
27472747
vxAddLogEntry(reinterpret_cast<vx_reference>(this), VX_ERROR_INVALID_DIMENSION,
27482748
"Node: %s: parameter[%u] has an invalid destination dimention %ux%u",
2749-
nodes[n]->kernel->name, p);
2749+
nodes[n]->kernel->name, p, remap->dst_width, remap->dst_height);
27502750
(*num_errors)++;
27512751
return vx_false_e; //break;
27522752
}

0 commit comments

Comments
 (0)