From b84f62c44036e48bdf74fc01e961696b91e2029a Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 23 Jul 2020 06:46:05 +0200 Subject: [PATCH] Silence warning - char buffer was too small for what we wanted to fit into it --- menu/menu_driver.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/menu/menu_driver.h b/menu/menu_driver.h index 74fbac515c..aad10cb099 100644 --- a/menu/menu_driver.h +++ b/menu/menu_driver.h @@ -307,7 +307,7 @@ typedef struct uint64_t state; char *core_buf; - char menu_state_msg[1024]; + char menu_state_msg[8192]; /* Scratchpad variables. These are used for instance * by the filebrowser when having to store intermediary * paths (subdirs/previous dirs/current dir/path, etc).