resis/ResMerge.c: Too few arguments to formatting function

Fix code scanning alert no. 64: Too few arguments to formatting function

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
This commit is contained in:
Darryl Miles 2024-09-30 00:43:42 +01:00 committed by Tim Edwards
parent 3c90bbbe1f
commit f976005d2d
1 changed files with 2 additions and 1 deletions

View File

@ -679,7 +679,8 @@ ResMergeNodes(node1, node2, pendingList, doneList)
else
{
TxError("Bad plug node: is (%d %d), should be (%d %d)\n",
plug->rpl_node->rn_loc, node2->rn_loc);
plug->rpl_node->rn_loc.p_x, plug->rpl_node->rn_loc.p_y,
node2->rn_loc.p_x, node2->rn_loc.p_y);
plug->rpl_node = NULL;
}
}