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 0A3DC18252 for ; Mon, 28 Sep 2015 15:51:47 +0000 (UTC) Received: (qmail 60390 invoked by uid 500); 28 Sep 2015 15:51:46 -0000 Delivered-To: apmail-subversion-commits-archive@subversion.apache.org Received: (qmail 60352 invoked by uid 500); 28 Sep 2015 15:51:46 -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 60342 invoked by uid 99); 28 Sep 2015 15:51:46 -0000 Received: from Unknown (HELO spamd1-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 28 Sep 2015 15:51:46 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd1-us-west.apache.org (ASF Mail Server at spamd1-us-west.apache.org) with ESMTP id 669DAC6A9B for ; Mon, 28 Sep 2015 15:51:46 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd1-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 0.99 X-Spam-Level: X-Spam-Status: No, score=0.99 tagged_above=-999 required=6.31 tests=[KAM_LAZY_DOMAIN_SECURITY=1, T_RP_MATCHES_RCVD=-0.01] autolearn=disabled Received: from mx1-us-east.apache.org ([10.40.0.8]) by localhost (spamd1-us-west.apache.org [10.40.0.7]) (amavisd-new, port 10024) with ESMTP id 4vASBN_EHWk7 for ; Mon, 28 Sep 2015 15:51:45 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-us-east.apache.org (ASF Mail Server at mx1-us-east.apache.org) with ESMTP id C0BBB439C0 for ; Mon, 28 Sep 2015 15:51:44 +0000 (UTC) Received: from svn01-us-west.apache.org (svn.apache.org [10.41.0.6]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 16D90E05E6 for ; Mon, 28 Sep 2015 15:51:44 +0000 (UTC) Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id CFAA33A04B9 for ; Mon, 28 Sep 2015 15:51:43 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1705710 - /subversion/trunk/subversion/libsvn_client/patch.c Date: Mon, 28 Sep 2015 15:51:43 -0000 To: commits@subversion.apache.org From: rhuijben@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20150928155143.CFAA33A04B9@svn01-us-west.apache.org> Author: rhuijben Date: Mon Sep 28 15:51:43 2015 New Revision: 1705710 URL: http://svn.apache.org/viewvc?rev=1705710&view=rev Log: Fix some indentation. No functional changes. * subversion/libsvn_client/patch.c (match_existing_target): Fix indentation. Modified: subversion/trunk/subversion/libsvn_client/patch.c Modified: subversion/trunk/subversion/libsvn_client/patch.c URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_client/patch.c?rev=1705710&r1=1705709&r2=1705710&view=diff ============================================================================== --- subversion/trunk/subversion/libsvn_client/patch.c (original) +++ subversion/trunk/subversion/libsvn_client/patch.c Mon Sep 28 15:51:43 2015 @@ -1633,14 +1633,14 @@ match_existing_target(svn_boolean_t *mat *match = FALSE; return SVN_NO_ERROR; } - } - while (lines_matched && ! content->eof && ! hunk_eof); - svn_pool_destroy(iterpool); + } + while (lines_matched && ! content->eof && ! hunk_eof); + svn_pool_destroy(iterpool); - *match = (lines_matched && content->eof == hunk_eof); - SVN_ERR(seek_to_line(content, saved_line, scratch_pool)); + *match = (lines_matched && content->eof == hunk_eof); + SVN_ERR(seek_to_line(content, saved_line, scratch_pool)); - return SVN_NO_ERROR; + return SVN_NO_ERROR; } /* Determine the line at which a HUNK applies to CONTENT of the TARGET