From: Michael S. Tsirkin Date: Mon, 4 Aug 2014 12:21:59 +0000 (+0200) Subject: pc-dimm: fix up error message X-Git-Tag: v2.1.1~43 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=948574e0d251e56e338f26a19c16ccf3b581472f;p=thirdparty%2Fqemu.git pc-dimm: fix up error message - int should be printed using %d - print actual wrong value for property Cc: qemu-stable@nongnu.org Signed-off-by: Michael S. Tsirkin (cherry picked from commit 988eba0f681bd4f82e9e02998da8106f165ed82c) Signed-off-by: Michael Roth --- diff --git a/hw/mem/pc-dimm.c b/hw/mem/pc-dimm.c index 92e276f2f43..5bfc5b74830 100644 --- a/hw/mem/pc-dimm.c +++ b/hw/mem/pc-dimm.c @@ -253,8 +253,9 @@ static void pc_dimm_realize(DeviceState *dev, Error **errp) return; } if (dimm->node >= nb_numa_nodes) { - error_setg(errp, "'" PC_DIMM_NODE_PROP - "' exceeds numa node number: %" PRId32, nb_numa_nodes); + error_setg(errp, "'DIMM property " PC_DIMM_NODE_PROP " has value %" + PRIu32 "' which exceeds the number of numa nodes: %d", + dimm->node, nb_numa_nodes); return; } }