From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59420) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XcAqg-0003Ju-M1 for qemu-devel@nongnu.org; Thu, 09 Oct 2014 06:21:38 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XcAqX-0001Hm-F9 for qemu-devel@nongnu.org; Thu, 09 Oct 2014 06:21:30 -0400 Received: from mail-wi0-x231.google.com ([2a00:1450:400c:c05::231]:47778) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XcAqX-0001HV-8g for qemu-devel@nongnu.org; Thu, 09 Oct 2014 06:21:21 -0400 Received: by mail-wi0-f177.google.com with SMTP id fb4so1297144wid.4 for ; Thu, 09 Oct 2014 03:21:20 -0700 (PDT) Sender: Paolo Bonzini From: Paolo Bonzini Date: Thu, 9 Oct 2014 12:21:14 +0200 Message-Id: <1412850074-12962-1-git-send-email-pbonzini@redhat.com> In-Reply-To: <1412849438-12274-1-git-send-email-pbonzini@redhat.com> References: <1412849438-12274-1-git-send-email-pbonzini@redhat.com> Subject: [Qemu-devel] [PULL 07/28] vl.c: Small coding style fix List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Eduardo Habkost From: Eduardo Habkost Just to make checkpatch.pl happy when moving the code. Reviewed-by: Paolo Bonzini Signed-off-by: Eduardo Habkost Signed-off-by: Paolo Bonzini --- vl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vl.c b/vl.c index 9d2aaaf..72436cd 100644 --- a/vl.c +++ b/vl.c @@ -2712,7 +2712,7 @@ static int configure_accelerator(MachineClass *mc) if (*p == ':') { p++; } - p = get_opt_name(buf, sizeof (buf), p, ':'); + p = get_opt_name(buf, sizeof(buf), p, ':'); for (i = 0; i < ARRAY_SIZE(accel_list); i++) { if (strcmp(accel_list[i].opt_name, buf) == 0) { if (!accel_list[i].available()) { -- 1.8.3.1