From: Hoa Nguyen Date: Sun, 27 Nov 2022 03:22:20 +0000 (-0800) Subject: hw/cxl/cxl-host: Fix an error message typo X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=f99ad11cd193f21d8740ca836e2d84315171aefd;p=qemu.git hw/cxl/cxl-host: Fix an error message typo Signed-off-by: Hoa Nguyen Reviewed-by: Philippe Mathieu-Daudé Message-Id: <20221127032220.2649-1-hoanguyen@ucdavis.edu> Signed-off-by: Laurent Vivier --- diff --git a/hw/cxl/cxl-host.c b/hw/cxl/cxl-host.c index 1adf61231a..3c1ec8732a 100644 --- a/hw/cxl/cxl-host.c +++ b/hw/cxl/cxl-host.c @@ -47,7 +47,7 @@ static void cxl_fixed_memory_window_config(CXLState *cxl_state, if (object->size % (256 * MiB)) { error_setg(errp, - "Size of a CXL fixed memory window must my a multiple of 256MiB"); + "Size of a CXL fixed memory window must be a multiple of 256MiB"); return; } fw->size = object->size;