And increase the temporary char array length to 8192 bytes just in case.

This commit is contained in:
OBattler
2025-08-09 14:47:59 +02:00
parent 072fe6a64f
commit eaead6750a

View File

@@ -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"