From d0e31a105e2a353a2ac148c8f0044cfa8939f645 Mon Sep 17 00:00:00 2001 From: Ishani Chugh Date: Thu, 13 Apr 2017 21:44:39 +0530 Subject: Remove reduntant qemu: from error functions This patch removes redundant "qemu:" from error functions. The link to the bitesized task is: http://wiki.qemu-project.org/Contribute/BiteSizedTasks#Error_checking Signed-off-by: Ishani Chugh Reviewed-by: Eduardo Habkost Reviewed-by: David Gibson Signed-off-by: Michael Tokarev --- hw/s390x/sclp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'hw/s390x/sclp.c') diff --git a/hw/s390x/sclp.c b/hw/s390x/sclp.c index e741da1141..6996088584 100644 --- a/hw/s390x/sclp.c +++ b/hw/s390x/sclp.c @@ -496,10 +496,10 @@ static void sclp_realize(DeviceState *dev, Error **errp) ret = s390_set_memory_limit(machine->maxram_size, &hw_limit); if (ret == -E2BIG) { - error_setg(&err, "qemu: host supports a maximum of %" PRIu64 " GB", + error_setg(&err, "host supports a maximum of %" PRIu64 " GB", hw_limit >> 30); } else if (ret) { - error_setg(&err, "qemu: setting the guest size failed"); + error_setg(&err, "setting the guest size failed"); } out: -- cgit v1.2.1