From 8d8088b8d9c807b2843b46b2084f0c2d55e9f023 Mon Sep 17 00:00:00 2001 From: Michal Privoznik Date: Mon, 24 Aug 2020 18:29:44 +0200 Subject: [PATCH] qemuDomainGetMemorySizeAlignment: Mark domain @def const This function is not changing the domain definition, it's only reading from it. The function is going to be used from another function which already takes const virDomainDef. Make the @def const to avoid typecasting it. Signed-off-by: Michal Privoznik --- src/qemu/qemu_domain.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qemu/qemu_domain.c b/src/qemu/qemu_domain.c index b321722f0e..d708ef5f00 100644 --- a/src/qemu/qemu_domain.c +++ b/src/qemu/qemu_domain.c @@ -8025,7 +8025,7 @@ qemuDomainAgentAvailable(virDomainObjPtr vm, static unsigned long long -qemuDomainGetMemorySizeAlignment(virDomainDefPtr def) +qemuDomainGetMemorySizeAlignment(const virDomainDef *def) { /* PPC requires the memory sizes to be rounded to 256MiB increments, so * round them to the size always. */