From 90732a8b4cb554254af473d0e570daf6b8c987a7 Mon Sep 17 00:00:00 2001 From: Andrew Cooper Date: Wed, 19 Jul 2023 11:57:46 +0100 Subject: [PATCH] xen/x86: Use const char * for string literals (2) This hunk was accidentally missing from a previous change. Fixes: d642c0706678 ("xen/x86: Use const char * for string literals") Signed-off-by: Andrew Cooper Acked-by: Jan Beulich --- xen/arch/x86/setup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xen/arch/x86/setup.c b/xen/arch/x86/setup.c index 74e3915a4d..2dbe9857aa 100644 --- a/xen/arch/x86/setup.c +++ b/xen/arch/x86/setup.c @@ -968,7 +968,7 @@ static struct domain *__init create_dom0(const module_t *image, void __init noreturn __start_xen(unsigned long mbi_p) { - char *memmap_type = NULL; + const char *memmap_type = NULL; char *cmdline, *kextra, *loader; void *bsp_stack; struct cpu_info *info = get_cpu_info(), *bsp_info; -- 2.39.5