From patchwork Wed May 21 13:42:16 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chandrakanth Gorantla X-Patchwork-Id: 4217071 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.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 82AAC9F1CD for ; Wed, 21 May 2014 13:46:22 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id C7DF7202E6 for ; Wed, 21 May 2014 13:46:20 +0000 (UTC) Received: from alsa0.perex.cz (alsa0.perex.cz [77.48.224.243]) by mail.kernel.org (Postfix) with ESMTP id 89B6F2024C for ; Wed, 21 May 2014 13:46:19 +0000 (UTC) Received: by alsa0.perex.cz (Postfix, from userid 1000) id 90B8E260309; Wed, 21 May 2014 15:46:17 +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=-1.9 required=5.0 tests=BAYES_00,NO_DNS_FOR_FROM, UNPARSEABLE_RELAY autolearn=no version=3.3.1 Received: from alsa0.perex.cz (localhost [IPv6:::1]) by alsa0.perex.cz (Postfix) with ESMTP id 27E2B260815; Wed, 21 May 2014 15:46:07 +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 B40D2262632; Wed, 21 May 2014 15:43:10 +0200 (CEST) Received: from hqemgate14.nvidia.com (hqemgate14.nvidia.com [216.228.121.143]) by alsa0.perex.cz (Postfix) with ESMTP id 64732262607 for ; Wed, 21 May 2014 15:43:02 +0200 (CEST) Received: from hqnvupgp08.nvidia.com (Not Verified[216.228.121.13]) by hqemgate14.nvidia.com id ; Wed, 21 May 2014 06:44:12 -0700 Received: from hqemhub03.nvidia.com ([172.20.12.94]) by hqnvupgp08.nvidia.com (PGP Universal service); Wed, 21 May 2014 06:38:06 -0700 X-PGP-Universal: processed; by hqnvupgp08.nvidia.com on Wed, 21 May 2014 06:38:06 -0700 Received: from HQMAIL101.nvidia.com (172.20.187.10) by hqemhub03.nvidia.com (172.20.150.15) with Microsoft SMTP Server (TLS) id 8.3.342.0; Wed, 21 May 2014 06:43:00 -0700 Received: from HQMAIL101.nvidia.com (172.20.187.10) by HQMAIL101.nvidia.com (172.20.187.10) with Microsoft SMTP Server (TLS) id 15.0.847.32; Wed, 21 May 2014 13:42:59 +0000 Received: from bgemhub02.nvidia.com (10.25.128.14) by HQMAIL101.nvidia.com (172.20.187.10) with Microsoft SMTP Server (TLS) id 15.0.847.32 via Frontend Transport; Wed, 21 May 2014 13:42:59 +0000 Received: from cgorantla-desktop.nvidia.com (10.25.128.134) by bgemhub02.nvidia.com (10.25.128.14) with Microsoft SMTP Server (TLS) id 8.3.342.0; Wed, 21 May 2014 19:12:58 +0530 From: Chandrakanth Gorantla To: Date: Wed, 21 May 2014 19:12:16 +0530 Message-ID: <1400679736-619-1-git-send-email-cgorantla@nvidia.com> X-Mailer: git-send-email 1.8.1.5 X-NVConfidentiality: public MIME-Version: 1.0 X-Mailman-Approved-At: Wed, 21 May 2014 15:46:05 +0200 Cc: Chandrakanth Gorantla Subject: [alsa-devel] [PATCH] tinycompress: compilation fix 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 fix missing extern C closing statement. --- include/tinycompress/tinycompress.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/tinycompress/tinycompress.h b/include/tinycompress/tinycompress.h index 03c396f..3d94da6 100644 --- a/include/tinycompress/tinycompress.h +++ b/include/tinycompress/tinycompress.h @@ -270,4 +270,8 @@ 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) +} /* extern "C" */ +#endif + #endif