Return-Path: X-Original-To: apmail-subversion-commits-archive@minotaur.apache.org Delivered-To: apmail-subversion-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 3F94064AE for ; Tue, 14 Jun 2011 14:25:24 +0000 (UTC) Received: (qmail 800 invoked by uid 500); 14 Jun 2011 14:25:24 -0000 Delivered-To: apmail-subversion-commits-archive@subversion.apache.org Received: (qmail 769 invoked by uid 500); 14 Jun 2011 14:25:24 -0000 Mailing-List: contact commits-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@subversion.apache.org Delivered-To: mailing list commits@subversion.apache.org Received: (qmail 762 invoked by uid 99); 14 Jun 2011 14:25:24 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 14 Jun 2011 14:25:24 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 14 Jun 2011 14:25:23 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 302AB238890D; Tue, 14 Jun 2011 14:25:03 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1135602 - /subversion/trunk/subversion/include/svn_repos.h Date: Tue, 14 Jun 2011 14:25:03 -0000 To: commits@subversion.apache.org From: philip@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110614142503.302AB238890D@eris.apache.org> Author: philip Date: Tue Jun 14 14:25:02 2011 New Revision: 1135602 URL: http://svn.apache.org/viewvc?rev=1135602&view=rev Log: * subversion/include/svn_repos.h (enum svn_repos_notify_warning_t): Remove trailing comma for strict C89 compatibility. Modified: subversion/trunk/subversion/include/svn_repos.h Modified: subversion/trunk/subversion/include/svn_repos.h URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/include/svn_repos.h?rev=1135602&r1=1135601&r2=1135602&view=diff ============================================================================== --- subversion/trunk/subversion/include/svn_repos.h (original) +++ subversion/trunk/subversion/include/svn_repos.h Tue Jun 14 14:25:02 2011 @@ -264,7 +264,7 @@ typedef enum svn_repos_notify_warning_t * @see svn_fs.h:"Directory entry names and directory paths" */ /* ### TODO(doxygen): make that a proper doxygen link */ /* See svn_fs__path_valid(). */ - svn_repos_notify_warning_invalid_fspath, + svn_repos_notify_warning_invalid_fspath } svn_repos_notify_warning_t;