From 91ec4e4cb886ed03f40cea330c5c54894a43291f Mon Sep 17 00:00:00 2001 From: Darryl Miles Date: Mon, 30 Sep 2024 04:53:19 +0100 Subject: [PATCH] resis/ResRex.c: Wrong type of arguments to formatting function Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> --- resis/ResRex.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resis/ResRex.c b/resis/ResRex.c index 31cfd8e5..521d5e5e 100644 --- a/resis/ResRex.c +++ b/resis/ResRex.c @@ -945,8 +945,8 @@ ResCheckPorts(cellDef) /* and a drivepoint. */ node = ResInitializeNode(entry); - TxPrintf("Port: name = %s is new node 0x%x\n", - lab->lab_text, node); + TxPrintf("Port: name = %s is new node %p\n", + lab->lab_text, (void *)node); TxPrintf("Location is (%d, %d); drivepoint (%d, %d)\n", portloc.p_x, portloc.p_y, portloc.p_x, portloc.p_y);