From: chenfan Date: Mon, 28 Jul 2014 07:13:06 +0000 (+0800) Subject: target-i386/cpu.c: Fix two error output indentation X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=5bb4c35dcac527be2e174aacf8aad909620bc5e7;p=qmiga%2Fqemu.git target-i386/cpu.c: Fix two error output indentation Signed-off-by: Chen Fan Reviewed-by: Igor Mammedov Signed-off-by: Michael Tokarev --- diff --git a/target-i386/cpu.c b/target-i386/cpu.c index 6d008ab5ee..217500c735 100644 --- a/target-i386/cpu.c +++ b/target-i386/cpu.c @@ -1716,9 +1716,9 @@ static void x86_set_hv_spinlocks(Object *obj, Visitor *v, void *opaque, if (value < min || value > max) { error_setg(errp, "Property %s.%s doesn't take value %" PRId64 - " (minimum: %" PRId64 ", maximum: %" PRId64 ")", - object_get_typename(obj), name ? name : "null", - value, min, max); + " (minimum: %" PRId64 ", maximum: %" PRId64 ")", + object_get_typename(obj), name ? name : "null", + value, min, max); return; } cpu->hyperv_spinlock_attempts = value; @@ -1808,8 +1808,8 @@ static void x86_cpu_parse_featurestr(CPUState *cs, char *features, } if (numvalue < min) { error_report("hv-spinlocks value shall always be >= 0x%x" - ", fixup will be removed in future versions", - min); + ", fixup will be removed in future versions", + min); numvalue = min; } snprintf(num, sizeof(num), "%" PRId32, numvalue);