From 257b8e03808e678671125d1f5861867c332799a7 Mon Sep 17 00:00:00 2001 From: hpa Date: Sun, 28 Aug 2005 02:35:30 +0000 Subject: [PATCH] Handle 512-character command lines --- com32/modules/menu.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/com32/modules/menu.h b/com32/modules/menu.h index 091a133..0d4bd00 100644 --- a/com32/modules/menu.h +++ b/com32/modules/menu.h @@ -28,7 +28,8 @@ struct menu_entry { unsigned char hotkey; }; -#define MAX_CMDLINE_LEN 256 +/* 512 is the current definition inside syslinux */ +#define MAX_CMDLINE_LEN 512 #define MAX_ENTRIES 4096 /* Oughta be enough for anybody */ extern struct menu_entry menu_entries[]; -- 2.7.4