From patchwork Fri Feb 26 21:39:46 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vagrant Cascadian X-Patchwork-Id: 46503 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 9A6D8B7D44 for ; Mon, 1 Mar 2010 01:53:19 +1100 (EST) Received: from localhost ([127.0.0.1]:59563 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NlkWC-0003qQ-Ke for incoming@patchwork.ozlabs.org; Sun, 28 Feb 2010 09:53:16 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Nl7ux-0005Bd-Hx for qemu-devel@nongnu.org; Fri, 26 Feb 2010 16:40:15 -0500 Received: from [199.232.76.173] (port=45602 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Nl7ux-0005BO-4D for qemu-devel@nongnu.org; Fri, 26 Feb 2010 16:40:15 -0500 Received: from Debian-exim by monty-python.gnu.org with spam-scanned (Exim 4.60) (envelope-from ) id 1Nl7uv-0004a0-JS for qemu-devel@nongnu.org; Fri, 26 Feb 2010 16:40:14 -0500 Received: from mail.freegeek.org ([67.51.72.37]:48225 helo=george.freegeek.org) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Nl7uv-0004Wn-6Z for qemu-devel@nongnu.org; Fri, 26 Feb 2010 16:40:13 -0500 Received: from localhost (localhost [127.0.0.1]) by george.freegeek.org (Postfix) with ESMTP id 8C8CC1DD62F for ; Fri, 26 Feb 2010 13:39:47 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at george.fglan Received: from george.freegeek.org ([127.0.0.1]) by localhost (george.fglan [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id vRl2MkMEY2aN for ; Fri, 26 Feb 2010 13:39:47 -0800 (PST) Received: from claws.fglan (unknown [192.168.3.44]) by george.freegeek.org (Postfix) with ESMTPS id C24301DD61F for ; Fri, 26 Feb 2010 13:39:46 -0800 (PST) Received: from vagrant by claws.fglan with local (Exim 4.69) (envelope-from ) id 1Nl7uU-0004LK-Ic for qemu-devel@nongnu.org; Fri, 26 Feb 2010 13:39:46 -0800 Date: Fri, 26 Feb 2010 13:39:46 -0800 From: Vagrant Cascadian To: qemu-devel@nongnu.org Message-ID: <20100226213946.GK8032@claws.fglan> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.18 (2008-05-17) X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) X-Mailman-Approved-At: Sun, 28 Feb 2010 09:52:31 -0500 Subject: [Qemu-devel] spelling typo (paramters) in audio/alsaaudio.c 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 here's a trivial patch to fix the spelling of "parameters": live well, vagrant diff --git a/audio/alsaaudio.c b/audio/alsaaudio.c index 7698d10..6a9b87a 100644 --- a/audio/alsaaudio.c +++ b/audio/alsaaudio.c @@ -665,7 +665,7 @@ static int alsa_open (int in, struct alsa_params_req *req, (obt->fmt != req->fmt || obt->nchannels != req->nchannels || obt->freq != req->freq)) { - dolog ("Audio paramters for %s\n", typ); + dolog ("Audio parameters for %s\n", typ); alsa_dump_info (req, obt); }