From patchwork Mon Mar 14 10:15:59 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: francois.gaffie@intel.com X-Patchwork-Id: 8581321 Return-Path: X-Original-To: patchwork-alsa-devel@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 45AF4C0553 for ; Mon, 14 Mar 2016 16:41:24 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 739D2203DC for ; Mon, 14 Mar 2016 16:41:23 +0000 (UTC) Received: from alsa0.perex.cz (alsa0.perex.cz [77.48.224.243]) by mail.kernel.org (Postfix) with ESMTP id 67611203B4 for ; Mon, 14 Mar 2016 16:41:17 +0000 (UTC) Received: by alsa0.perex.cz (Postfix, from userid 1000) id 32975265D2C; Mon, 14 Mar 2016 17:41:16 +0100 (CET) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,LOTS_OF_MONEY, RCVD_IN_DNSWL_NONE, 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 AD64B26524C; Mon, 14 Mar 2016 17:27:15 +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 D89FB261507; Mon, 14 Mar 2016 09:31:08 +0100 (CET) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by alsa0.perex.cz (Postfix) with ESMTP id 516102614BB; Mon, 14 Mar 2016 09:31:01 +0100 (CET) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga102.jf.intel.com with ESMTP; 14 Mar 2016 01:30:59 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.24,334,1455004800"; d="scan'208";a="923462985" Received: from tllab068.tl.intel.com ([10.102.162.164]) by fmsmga001.fm.intel.com with ESMTP; 14 Mar 2016 01:30:58 -0700 From: francois.gaffie@intel.com To: patch@alsa-project.org Date: Mon, 14 Mar 2016 11:15:59 +0100 Message-Id: <1457950559-26012-1-git-send-email-francois.gaffie@intel.com> X-Mailer: git-send-email 1.9.1 MIME-Version: 1.0 X-Mailman-Approved-At: Mon, 14 Mar 2016 17:27:12 +0100 Cc: alsa-devel@alsa-project.org, =?UTF-8?q?Fran=C3=A7ois=20Gaffie?= Subject: [alsa-devel] [PATCH - tinycompress - brace issue 1/1] tinycompress: fix compilation error: missing brace issue 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: , Errors-To: alsa-devel-bounces@alsa-project.org Sender: alsa-devel-bounces@alsa-project.org X-Virus-Scanned: ClamAV using ClamSMTP From: François Gaffie Signed-off-by: François Gaffie diff --git a/include/tinycompress/tinycompress.h b/include/tinycompress/tinycompress.h index 68626a4..d35801b 100644 --- a/include/tinycompress/tinycompress.h +++ b/include/tinycompress/tinycompress.h @@ -273,4 +273,7 @@ int is_compress_ready(struct compress *compress); /* Returns a human readable reason for the last error */ const char *compress_get_error(struct compress *compress); +#if defined(__cplusplus) +} +#endif #endif diff --git a/include/tinycompress/tinymp3.h b/include/tinycompress/tinymp3.h index a709c39..7015320 100644 --- a/include/tinycompress/tinymp3.h +++ b/include/tinycompress/tinymp3.h @@ -102,5 +102,7 @@ enum mp3_stereo_mode { DUAL = 0x02, MONO = 0x03 }; - +#if defined(__cplusplus) +} +#endif #endif