From patchwork Tue Nov 13 14:56:28 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vinod Koul X-Patchwork-Id: 10681013 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 4CC3F1747 for ; Tue, 13 Nov 2018 15:32:42 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 3AA012AD79 for ; Tue, 13 Nov 2018 15:32:42 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 2F0AE2AD8F; Tue, 13 Nov 2018 15:32:42 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-2.7 required=2.0 tests=BAYES_00,DKIM_INVALID, DKIM_SIGNED,MAILING_LIST_MULTI,RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.1 Received: from alsa0.perex.cz (alsa0.perex.cz [77.48.224.243]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id C1E052AD79 for ; Tue, 13 Nov 2018 15:32:41 +0000 (UTC) Received: from alsa0.perex.cz (localhost [127.0.0.1]) by alsa0.perex.cz (Postfix) with ESMTP id 210CB267929; Tue, 13 Nov 2018 16:32:40 +0100 (CET) X-Original-To: alsa-devel@alsa-project.org Delivered-To: alsa-devel@alsa-project.org Received: by alsa0.perex.cz (Postfix, from userid 1000) id DED56267AAD; Tue, 13 Nov 2018 16:32:37 +0100 (CET) Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by alsa0.perex.cz (Postfix) with ESMTP id DBD7F267AA5 for ; Tue, 13 Nov 2018 16:32:34 +0100 (CET) Received: from localhost.localdomain (unknown [106.223.111.108]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 430272250F; Tue, 13 Nov 2018 14:56:52 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1542121016; bh=qKBtdoKgqMFKNuJzj4ez9byFH+e/CRNTjPXI358+F4M=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=CG4FaiVlis29u7/TDeA6PBomuca4gyVu7BIEcGnIzt7zdjmPRdDZr4Os0F7DgAOZZ MZP9r4ruf1aVL6S43xYLM1QrHibfqCWbbqzmZjwLnrMA2JOWr/x7ZilT7B9co+edau SrMZSb+PA3GJiaQtye0pfA/Z4yIpfZLnLz1/bPwU= From: Vinod Koul To: alsa-devel@alsa-project.org Date: Tue, 13 Nov 2018 20:26:28 +0530 Message-Id: <20181113145628.21026-4-vkoul@kernel.org> X-Mailer: git-send-email 2.14.5 In-Reply-To: <20181113145628.21026-1-vkoul@kernel.org> References: <20181113145628.21026-1-vkoul@kernel.org> Cc: Vinod Koul Subject: [alsa-devel] [PATCH 4/4] cplay: fix typo X-BeenThere: alsa-devel@alsa-project.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Alsa-devel mailing list for ALSA developers - http://www.alsa-project.org" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: alsa-devel-bounces@alsa-project.org Sender: alsa-devel-bounces@alsa-project.org X-Virus-Scanned: ClamAV using ClamSMTP Signed-off-by: Vinod Koul --- src/utils/cplay.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/cplay.c b/src/utils/cplay.c index 87863a307b47..9ffa1dd86f7f 100644 --- a/src/utils/cplay.c +++ b/src/utils/cplay.c @@ -366,7 +366,7 @@ void play_samples(char *name, unsigned int card, unsigned int device, goto BUF_EXIT; } if (wrote != num_read) { - /* TODO: Buufer pointer needs to be set here */ + /* TODO: Buffer pointer needs to be set here */ fprintf(stderr, "We wrote %d, DSP accepted %d\n", num_read, wrote); } }