From 4374a1918eeae5e7b1c4ba33388f1be65a05f175 Mon Sep 17 00:00:00 2001 From: Darryl Miles Date: Mon, 30 Sep 2024 01:46:25 +0100 Subject: [PATCH] lef/defWrite.c: Too few arguments to formatting function Fix code scanning alert no. 63: Too few arguments to formatting function (#3) * Create codeql.yml * Fix code scanning alert no. 63: Too few arguments to formatting function Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> --------- Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> --- lef/defWrite.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lef/defWrite.c b/lef/defWrite.c index b5b5c4f1..ccbdef57 100644 --- a/lef/defWrite.c +++ b/lef/defWrite.c @@ -338,7 +338,7 @@ defnodeCount(node, res, cap, total) if (pwr && (!strcmp(cp, pwr))) { /* Diagnostic */ - TxPrintf("Node %s matches GND variable definition!\n"); + TxPrintf("Node %s matches GND variable definition!\n", cp); node->efnode_flags |= EF_SPECIAL; }