Return-Path: X-Original-To: apmail-httpd-cvs-archive@www.apache.org Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 3A05418005 for ; Tue, 25 Aug 2015 04:17:12 +0000 (UTC) Received: (qmail 52026 invoked by uid 500); 25 Aug 2015 04:17:12 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 51957 invoked by uid 500); 25 Aug 2015 04:17:11 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 51948 invoked by uid 99); 25 Aug 2015 04:17:11 -0000 Received: from eris.apache.org (HELO hades.apache.org) (140.211.11.105) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 25 Aug 2015 04:17:11 +0000 Received: from hades.apache.org (localhost [127.0.0.1]) by hades.apache.org (ASF Mail Server at hades.apache.org) with ESMTP id 64930AC0294 for ; Tue, 25 Aug 2015 04:17:11 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1697543 - /httpd/httpd/trunk/modules/http2/h2_config.c Date: Tue, 25 Aug 2015 04:17:10 -0000 To: cvs@httpd.apache.org From: gsmith@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20150825041711.64930AC0294@hades.apache.org> Author: gsmith Date: Tue Aug 25 04:17:10 2015 New Revision: 1697543 URL: http://svn.apache.org/r1697543 Log: Noise reduction MSVC != GCC Modified: httpd/httpd/trunk/modules/http2/h2_config.c Modified: httpd/httpd/trunk/modules/http2/h2_config.c URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/http2/h2_config.c?rev=1697543&r1=1697542&r2=1697543&view=diff ============================================================================== --- httpd/httpd/trunk/modules/http2/h2_config.c (original) +++ httpd/httpd/trunk/modules/http2/h2_config.c Tue Aug 25 04:17:10 2015 @@ -299,7 +299,9 @@ static const char *h2_conf_set_direct(cm return "value must be On or Off"; } +#ifndef _MSC_VER #pragma GCC diagnostic ignored "-Wmissing-braces" +#endif const command_rec h2_cmds[] = { AP_INIT_TAKE1("H2MaxSessionStreams", h2_conf_set_max_streams, NULL, RSRC_CONF, "maximum number of open streams per session"),