From patchwork Fri Oct 23 17:11:41 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Caleb Crome X-Patchwork-Id: 7474041 Return-Path: X-Original-To: patchwork-alsa-devel@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 1E78D9F36A for ; Fri, 23 Oct 2015 17:12:08 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 53195209CB for ; Fri, 23 Oct 2015 17:12:07 +0000 (UTC) Received: from alsa0.perex.cz (alsa0.perex.cz [77.48.224.243]) by mail.kernel.org (Postfix) with ESMTP id 32151208A7 for ; Fri, 23 Oct 2015 17:12:06 +0000 (UTC) Received: by alsa0.perex.cz (Postfix, from userid 1000) id B5F552650B0; Fri, 23 Oct 2015 19:12:04 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_LOW, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 Received: from alsa0.perex.cz (localhost [127.0.0.1]) by alsa0.perex.cz (Postfix) with ESMTP id 163F62625D7; Fri, 23 Oct 2015 19:11:57 +0200 (CEST) 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 A6E922625ED; Fri, 23 Oct 2015 19:11:55 +0200 (CEST) Received: from mail-pa0-f51.google.com (mail-pa0-f51.google.com [209.85.220.51]) by alsa0.perex.cz (Postfix) with ESMTP id 79F5D261B2A for ; Fri, 23 Oct 2015 19:11:48 +0200 (CEST) Received: by pacfv9 with SMTP id fv9so128923562pac.3 for ; Fri, 23 Oct 2015 10:11:46 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=ffUGCPk+JEfFIVEhRpg2ownZ/GSjq/tIP8bZsRUWdiU=; b=DvX3IuPp0lkInNPq26F3iiYpqLgfnrq3j9snKio70h14vbNt+5sw8DcUQqYiU2KQj+ 0VP/DPw78BufFhVnvD9lbUeedblUrz5NMhmR4mQWSg5mT+Pyo4+a/jwg+mVTW68YKSLd C8Bj04dKeAo3w3iFsgWne+UCUOsHpwqAhxc6PuUL4E1OilFI0OIY7R/1LwrueSEHYQs6 KA3w1Yohk1/ftVJHqv1qXM79hOUy7BMUSbFcO3/HIVVf9vEInzPFGHm2RVjfdIdw66l5 yZ0ihoCzeFzWBw9TNDjstrW4iL8U5tGuciqXfZTs8x51NQ8Lk0sWErJ1k/Hk1Iz9hc// 1pgg== X-Gm-Message-State: ALoCoQkEsS1S8hN1bV0Y8NsSY3v6Ww2L5C1x9Vsp+d0lTX82lRtiHsGPlumdMvtI2Fe6SxNtRfzi X-Received: by 10.68.181.68 with SMTP id du4mr6281437pbc.138.1445620306707; Fri, 23 Oct 2015 10:11:46 -0700 (PDT) Received: from alarm.localdomain (99-113-34-250.lightspeed.sntcca.sbcglobal.net. [99.113.34.250]) by smtp.gmail.com with ESMTPSA id fa14sm19996781pac.8.2015.10.23.10.11.45 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 23 Oct 2015 10:11:46 -0700 (PDT) From: Caleb Crome To: alsa-devel@alsa-project.org Date: Fri, 23 Oct 2015 17:11:41 +0000 Message-Id: <1445620302-18408-1-git-send-email-caleb@crome.org> X-Mailer: git-send-email 2.6.1 Cc: Caleb Crome Subject: [alsa-devel] [PATCH 1/2] BAT: Add missing locale.h header 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 Missing include became apparent when -O3 was not specified. Added the header to remove error messages during debug compile. Signed-off-by: Caleb Crome --- bat/bat.c | 1 + 1 file changed, 1 insertion(+) diff --git a/bat/bat.c b/bat/bat.c index 56cfaf6..086b9fa 100644 --- a/bat/bat.c +++ b/bat/bat.c @@ -23,6 +23,7 @@ #include #include #include +#include #include "aconfig.h" #include "gettext.h"