From patchwork Tue Apr 16 19:06:15 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Eduardo Habkost X-Patchwork-Id: 237061 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 4845C2C0131 for ; Wed, 17 Apr 2013 05:06:37 +1000 (EST) Received: from localhost ([::1]:53776 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1USBD9-0008Nj-6U for incoming@patchwork.ozlabs.org; Tue, 16 Apr 2013 15:06:35 -0400 Received: from eggs.gnu.org ([208.118.235.92]:40226) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1USBCu-0008Ne-4M for qemu-devel@nongnu.org; Tue, 16 Apr 2013 15:06:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1USBCs-0000aP-Nk for qemu-devel@nongnu.org; Tue, 16 Apr 2013 15:06:20 -0400 Received: from mx1.redhat.com ([209.132.183.28]:61136) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1USBCs-0000a6-Gd for qemu-devel@nongnu.org; Tue, 16 Apr 2013 15:06:18 -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 r3GJ6Hnu010020 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Tue, 16 Apr 2013 15:06:17 -0400 Received: from localhost (vpn1-7-91.gru2.redhat.com [10.97.7.91]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id r3GJ6F2G000719; Tue, 16 Apr 2013 15:06:16 -0400 Date: Tue, 16 Apr 2013 16:06:15 -0300 From: Eduardo Habkost To: qemu-devel@nongnu.org, Andreas =?iso-8859-1?Q?F=E4rber?= Message-ID: <20130416190615.GQ6862@otherpad.lan.raisama.net> References: <1366128724-31860-1-git-send-email-ehabkost@redhat.com> <1366128724-31860-5-git-send-email-ehabkost@redhat.com> <20130416205229.7078dc04@thinkpad> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20130416205229.7078dc04@thinkpad> X-Fnord: you can see the fnord User-Agent: Mutt/1.5.21 (2010-09-15) X-Scanned-By: MIMEDefang 2.68 on 10.5.11.23 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Cc: Igor Mammedov Subject: [Qemu-devel] [PATCH qom-cpu 4/5] bsd-user/elfload.c: Coding style fix X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Trivial 4-space indentation fix. Signed-off-by: Eduardo Habkost --- Sending this so Andreas doesn't have to fix the indentation himself before applying. bsd-user/elfload.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bsd-user/elfload.c b/bsd-user/elfload.c index a6cd3ab..8c33705 100644 --- a/bsd-user/elfload.c +++ b/bsd-user/elfload.c @@ -110,7 +110,7 @@ static const char *get_elf_platform(void) static uint32_t get_elf_hwcap(void) { - return thread_env->cpuid_features; + return thread_env->cpuid_features; } #ifdef TARGET_X86_64