From 51b8161a211821e988bcfb7ac897566d7696c085 Mon Sep 17 00:00:00 2001 From: Darryl Miles Date: Mon, 30 Sep 2024 01:44:50 +0100 Subject: [PATCH] lef/defWrite.c: Too few arguments to formatting function Fix code scanning alert no. 62: Too few arguments to formatting function (#1) * Create codeql.yml * Fix code scanning alert no. 62: 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 907f9acb..b5b5c4f1 100644 --- a/lef/defWrite.c +++ b/lef/defWrite.c @@ -330,7 +330,7 @@ defnodeCount(node, res, cap, total) if (pwr && (!strcmp(cp, pwr))) { /* Diagnostic */ - TxPrintf("Node %s matches VDD variable definition!\n"); + TxPrintf("Node %s matches VDD variable definition!\n", cp); node->efnode_flags |= EF_SPECIAL; }