From eaead6750ad371bb6a3f577feaa88132d9095b0d Mon Sep 17 00:00:00 2001 From: OBattler Date: Sat, 9 Aug 2025 14:47:59 +0200 Subject: [PATCH] And increase the temporary char array length to 8192 bytes just in case. --- src/86box.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/86box.c b/src/86box.c index 0bc43d552..1fd97e842 100644 --- a/src/86box.c +++ b/src/86box.c @@ -595,7 +595,7 @@ extern void device_find_all_descs(void); static void pc_show_usage(char *s) { - char p[4096] = { 0 }; + char p[8192] = { 0 }; sprintf(p, "\n%sUsage: 86box [options] [cfg-file]\n\n"