From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51716) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WwZr6-0005Dr-VB for qemu-devel@nongnu.org; Mon, 16 Jun 2014 12:34:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WwZqw-0007Ie-Gc for qemu-devel@nongnu.org; Mon, 16 Jun 2014 12:34:00 -0400 Received: from mx1.redhat.com ([209.132.183.28]:1868) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WwZqw-0007IZ-8o for qemu-devel@nongnu.org; Mon, 16 Jun 2014 12:33:50 -0400 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s5GGXnUO009027 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK) for ; Mon, 16 Jun 2014 12:33:49 -0400 From: Igor Mammedov Date: Mon, 16 Jun 2014 18:33:41 +0200 Message-Id: <1402936423-25147-3-git-send-email-imammedo@redhat.com> In-Reply-To: <1402936423-25147-1-git-send-email-imammedo@redhat.com> References: <1402936423-25147-1-git-send-email-imammedo@redhat.com> Subject: [Qemu-devel] [PATCH 2/4] fixup! pc: initialize memory hotplug address space List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: mst@redhat.com Signed-off-by: Igor Mammedov --- hw/i386/pc.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/hw/i386/pc.c b/hw/i386/pc.c index 37344ce..73daa07 100644 --- a/hw/i386/pc.c +++ b/hw/i386/pc.c @@ -1261,7 +1261,7 @@ FWCfgState *pc_memory_init(MachineState *machine, if ((pcms->hotplug_memory_base + hotplug_mem_size) < hotplug_mem_size) { - error_report("unsupported amount of maximum memory: %"PRIu64, + error_report("unsupported amount of maximum memory: " RAM_ADDR_FMT, machine->maxram_size); exit(EXIT_FAILURE); } -- 1.7.1