From 41913fbd7824bfc93d2a215e35f816953e94ecdd Mon Sep 17 00:00:00 2001 From: "Darryl L. Miles" Date: Wed, 2 Oct 2024 06:59:00 +0100 Subject: [PATCH] ExtUnique.c: '_uq' directive writing 3 bytes into a region of size between 1 and 1024 GCC14 loud default warnings series [-Wformat-overflow=] --- extract/ExtUnique.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extract/ExtUnique.c b/extract/ExtUnique.c index 028a6e49..98ca9b69 100644 --- a/extract/ExtUnique.c +++ b/extract/ExtUnique.c @@ -203,7 +203,7 @@ extMakeUnique(def, ll, lreg, lregList, labelHash, option) { static char *badmesg = "Non-global label \"%s\" attached to more than one unconnected node: %s"; - char *cpend, *text, name[1024], name2[1024], message[1024]; + char *cpend, *text, name[1024], name2[1024+32], message[1024]; LabRegion *lp2; LabelList *ll2; int nsuffix, nwarn;