From bf916d264724d37eb5aba70cea731e7a8d6ba7f9 Mon Sep 17 00:00:00 2001 From: "Darryl L. Miles" Date: Wed, 2 Oct 2024 06:59:00 +0100 Subject: [PATCH] SimRsim.c: directive writing 1 byte into a region of size between 0 and 255 GCC14 loud default warnings series [-Wformat-overflow=] --- sim/SimRsim.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sim/SimRsim.c b/sim/SimRsim.c index 129a73f6..5088e8c3 100644 --- a/sim/SimRsim.c +++ b/sim/SimRsim.c @@ -553,7 +553,7 @@ SimRsimIt(cmd, nodeName) char *nodeName; { - static char cmdStr[256]; + static char cmdStr[512]; static char cleanName[256]; char *strptr;