From: Michael Tokarev Date: Tue, 14 Nov 2023 16:11:33 +0000 (+0300) Subject: hw/mem/memory-device.c: spelling fix: ontaining X-Git-Tag: qemu-xen-4.20.0~415^2~9 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=d1c2fbc9c173e315f10e718a7ad78cb3a71f3bab;p=qemu-xen.git hw/mem/memory-device.c: spelling fix: ontaining Fixes: 6c1b28e9e405 "memory-device: Support empty memory devices" Reviewed-by: Thomas Huth Signed-off-by: Michael Tokarev --- diff --git a/hw/mem/memory-device.c b/hw/mem/memory-device.c index e0704b8dc3..a1b1af26bc 100644 --- a/hw/mem/memory-device.c +++ b/hw/mem/memory-device.c @@ -29,7 +29,7 @@ static bool memory_device_is_empty(const MemoryDeviceState *md) /* dropping const here is fine as we don't touch the memory region */ mr = mdc->get_memory_region((MemoryDeviceState *)md, &local_err); if (local_err) { - /* Not empty, we'll report errors later when ontaining the MR again. */ + /* Not empty, we'll report errors later when containing the MR again. */ error_free(local_err); return false; }