From 66734bbaeeb7b85182c574c40c86d12c7c63dce5 Mon Sep 17 00:00:00 2001 From: "Darryl L. Miles" Date: Wed, 2 Oct 2024 06:59:00 +0100 Subject: [PATCH] ExtHier.c: format '%ld' expects argument of type 'long int', but .. 'dlong' GCC14 loud default warnings series --- extract/ExtHier.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extract/ExtHier.c b/extract/ExtHier.c index e886267b..24c8e036 100644 --- a/extract/ExtHier.c +++ b/extract/ExtHier.c @@ -854,7 +854,7 @@ extOutputConns(table, outf) fprintf(outf, "merge \"%s\" \"%s\" %lg", nn->nn_name, nnext->nn_name, c); for (n = 0; n < ExtCurStyle->exts_numResistClasses; n++) - fprintf(outf, " %ld %d", + fprintf(outf, " %"DLONG_PREFIX"d %d", node->node_pa[n].pa_area, node->node_pa[n].pa_perim); fprintf(outf, "\n");