From patchwork Fri Oct 14 14:11:25 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Hajnoczi X-Patchwork-Id: 119795 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [140.186.70.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id ED557B6F87 for ; Sat, 15 Oct 2011 01:12:26 +1100 (EST) Received: from localhost ([::1]:43806 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1REiUj-0003Q6-SK for incoming@patchwork.ozlabs.org; Fri, 14 Oct 2011 10:12:17 -0400 Received: from eggs.gnu.org ([140.186.70.92]:55944) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1REiU4-0001Lw-FO for qemu-devel@nongnu.org; Fri, 14 Oct 2011 10:11:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1REiU1-0008Q5-8v for qemu-devel@nongnu.org; Fri, 14 Oct 2011 10:11:36 -0400 Received: from mtagate1.uk.ibm.com ([194.196.100.161]:42912) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1REiU0-0008Pl-VZ for qemu-devel@nongnu.org; Fri, 14 Oct 2011 10:11:33 -0400 Received: from d06nrmr1806.portsmouth.uk.ibm.com (d06nrmr1806.portsmouth.uk.ibm.com [9.149.39.193]) by mtagate1.uk.ibm.com (8.13.1/8.13.1) with ESMTP id p9EEBVWX003775 for ; Fri, 14 Oct 2011 14:11:31 GMT Received: from d06av10.portsmouth.uk.ibm.com (d06av10.portsmouth.uk.ibm.com [9.149.37.251]) by d06nrmr1806.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id p9EEBVEq2470082 for ; Fri, 14 Oct 2011 15:11:31 +0100 Received: from d06av10.portsmouth.uk.ibm.com (loopback [127.0.0.1]) by d06av10.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id p9EEBVMl017911 for ; Fri, 14 Oct 2011 08:11:31 -0600 Received: from localhost (stefanha-thinkpad.manchester-maybrook.uk.ibm.com [9.174.219.31]) by d06av10.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVin) with ESMTP id p9EEBUcQ017901; Fri, 14 Oct 2011 08:11:30 -0600 From: Stefan Hajnoczi To: Date: Fri, 14 Oct 2011 15:11:25 +0100 Message-Id: <1318601487-32419-6-git-send-email-stefanha@linux.vnet.ibm.com> X-Mailer: git-send-email 1.7.6.3 In-Reply-To: <1318601487-32419-1-git-send-email-stefanha@linux.vnet.ibm.com> References: <1318601487-32419-1-git-send-email-stefanha@linux.vnet.ibm.com> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) X-Received-From: 194.196.100.161 Cc: Stefan Weil , Anthony Liguori , Stefan Hajnoczi Subject: [Qemu-devel] [PATCH 5/7] tcg: Fix spelling in comment (varables -> variables) 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 From: Stefan Weil Signed-off-by: Stefan Weil Signed-off-by: Stefan Hajnoczi --- tcg/tcg.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/tcg/tcg.h b/tcg/tcg.h index de8a1d5..015f88a 100644 --- a/tcg/tcg.h +++ b/tcg/tcg.h @@ -175,7 +175,7 @@ typedef enum TCGType { typedef tcg_target_ulong TCGArg; -/* Define a type and accessor macros for varables. Using a struct is +/* Define a type and accessor macros for variables. Using a struct is nice because it gives some level of type safely. Ideally the compiler be able to see through all this. However in practice this is not true, expecially on targets with braindamaged ABIs (e.g. i386).