From patchwork Fri Oct 23 17:46:09 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Caleb Crome X-Patchwork-Id: 7474141 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 21B8A9F302 for ; Fri, 23 Oct 2015 17:46:39 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id A174C209F8 for ; Fri, 23 Oct 2015 17:46:36 +0000 (UTC) Received: from alsa0.perex.cz (alsa0.perex.cz [77.48.224.243]) by mail.kernel.org (Postfix) with ESMTP id A20562078C for ; Fri, 23 Oct 2015 17:46:35 +0000 (UTC) Received: by alsa0.perex.cz (Postfix, from userid 1000) id 778B026511F; Fri, 23 Oct 2015 19:46:33 +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,NO_DNS_FOR_FROM, 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 3FD632625ED; Fri, 23 Oct 2015 19:46:25 +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 5CCB8264F30; Fri, 23 Oct 2015 19:46:24 +0200 (CEST) Received: from mail-pa0-f46.google.com (mail-pa0-f46.google.com [209.85.220.46]) by alsa0.perex.cz (Postfix) with ESMTP id 3166C2625E3 for ; Fri, 23 Oct 2015 19:46:17 +0200 (CEST) Received: by pasz6 with SMTP id z6so123873307pas.2 for ; Fri, 23 Oct 2015 10:46:15 -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=l7x2OXvSpeBLQsV8kyHYZ6eK+5y77qgF773GZYmlSdz2DUKoGIUdWKiPOkepjkCfBg 5j775TY7GMQtdJAQRS3aZ8tPoOG8VnzreGfbpp4cB3N5WPXcFXZ3rTk9UjT1DGXjLewg FwkKPSPdLGZrdEZ/i1fS2/Qxtl61Zk5vdZEX0tIuayUbVcpxLgkP7E6HZkx/Dpm/iV4k OZF4ybqPdq8lHTksVLMVdYgVwiMiJtzNBWgVez7iOb63eg95P/M6Ryt6v0M2aKVaMyrc pOaHR0O/N9T7aN7rN6lRU7Q4EBdkYUwZ7HONRD2LIj96W5fohjZne3I9fVISg4rBhGva eo6Q== X-Gm-Message-State: ALoCoQlmCvmTL09VodQ3xItDd+NzmLNq9W0fUsNGVVX8C3H0IMfRIAqimt00QBhiGGYqNMLyqboT X-Received: by 10.68.217.41 with SMTP id ov9mr6427981pbc.118.1445622375421; Fri, 23 Oct 2015 10:46:15 -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 dd4sm20059961pbb.52.2015.10.23.10.46.13 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 23 Oct 2015 10:46:14 -0700 (PDT) From: Caleb Crome To: alsa-devel@alsa-project.org Date: Fri, 23 Oct 2015 17:46:09 +0000 Message-Id: <1445622370-18673-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"