From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54083) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XBfyA-0000DG-0n for qemu-devel@nongnu.org; Mon, 28 Jul 2014 04:07:46 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XBfy5-0006Yl-Lb for qemu-devel@nongnu.org; Mon, 28 Jul 2014 04:07:41 -0400 Date: Mon, 28 Jul 2014 10:07:33 +0200 From: Igor Mammedov Message-ID: <20140728100733.195b41a1@nial.usersys.redhat.com> In-Reply-To: <1406531586-17653-1-git-send-email-chen.fan.fnst@cn.fujitsu.com> References: <1406531586-17653-1-git-send-email-chen.fan.fnst@cn.fujitsu.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH] target-i386/cpu.c: Fix two error output indentation List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Chen Fan Cc: qemu-trivial@nongnu.org, qemu-devel@nongnu.org On Mon, 28 Jul 2014 15:13:06 +0800 Chen Fan wrote: > Signed-off-by: Chen Fan > --- > target-i386/cpu.c | 10 +++++----- > 1 file changed, 5 insertions(+), 5 deletions(-) > > diff --git a/target-i386/cpu.c b/target-i386/cpu.c > index 6d008ab..217500c 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); CCed qemu-trivial@nongnu.org Reviewed-by: Igor Mammedov