From patchwork Tue Dec 7 09:35:54 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Hajnoczi X-Patchwork-Id: 74501 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id BC9E0B70B0 for ; Tue, 7 Dec 2010 20:47:34 +1100 (EST) Received: from localhost ([127.0.0.1]:46373 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PPu8w-00025p-UD for incoming@patchwork.ozlabs.org; Tue, 07 Dec 2010 04:47:30 -0500 Received: from [140.186.70.92] (port=51224 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PPtxs-0006BS-2N for qemu-devel@nongnu.org; Tue, 07 Dec 2010 04:36:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PPtxq-0001Qr-Ln for qemu-devel@nongnu.org; Tue, 07 Dec 2010 04:36:03 -0500 Received: from mtagate1.uk.ibm.com ([194.196.100.161]:36477) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PPtxq-0001QF-C9 for qemu-devel@nongnu.org; Tue, 07 Dec 2010 04:36:02 -0500 Received: from d06nrmr1707.portsmouth.uk.ibm.com (d06nrmr1707.portsmouth.uk.ibm.com [9.149.39.225]) by mtagate1.uk.ibm.com (8.13.1/8.13.1) with ESMTP id oB79a0o0012945 for ; Tue, 7 Dec 2010 09:36:00 GMT Received: from d06av05.portsmouth.uk.ibm.com (d06av05.portsmouth.uk.ibm.com [9.149.37.229]) by d06nrmr1707.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id oB79a0Fj3420174 for ; Tue, 7 Dec 2010 09:36:02 GMT Received: from d06av05.portsmouth.uk.ibm.com (loopback [127.0.0.1]) by d06av05.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id oB79Zwgb012994 for ; Tue, 7 Dec 2010 02:35:58 -0700 Received: from stefan-thinkpad.manchester-maybrook.uk.ibm.com (dyn-9-174-219-22.manchester-maybrook.uk.ibm.com [9.174.219.22]) by d06av05.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVin) with ESMTP id oB79ZwVU012971; Tue, 7 Dec 2010 02:35:58 -0700 From: Stefan Hajnoczi To: Date: Tue, 7 Dec 2010 09:35:54 +0000 Message-Id: <1291714556-22961-3-git-send-email-stefanha@linux.vnet.ibm.com> X-Mailer: git-send-email 1.7.2.3 In-Reply-To: <1291714556-22961-1-git-send-email-stefanha@linux.vnet.ibm.com> References: <1291714556-22961-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) Cc: Kevin Wolf , Stefan Hajnoczi Subject: [Qemu-devel] [PATCH 2/4] qemu-option: Fix parse_option_parameters() documentation typo X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Yoda said, "list is the templace is". Fix this. Signed-off-by: Stefan Hajnoczi --- qemu-option.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/qemu-option.c b/qemu-option.c index e380fc1..65db542 100644 --- a/qemu-option.c +++ b/qemu-option.c @@ -394,8 +394,8 @@ QEMUOptionParameter *append_option_parameters(QEMUOptionParameter *dest, /* * Parses a parameter string (param) into an option list (dest). * - * list is the templace is. If dest is NULL, a new copy of list is created for - * it. If list is NULL, this function fails. + * list is the template option list. If dest is NULL, a new copy of list is + * created. If list is NULL, this function fails. * * A parameter string consists of one or more parameters, separated by commas. * Each parameter consists of its name and possibly of a value. In the latter