You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by rh...@apache.org on 2015/09/24 16:51:18 UTC

svn commit: r1705078 - /subversion/trunk/subversion/libsvn_client/patch.c

Author: rhuijben
Date: Thu Sep 24 14:51:18 2015
New Revision: 1705078

URL: http://svn.apache.org/viewvc?rev=1705078&view=rev
Log:
* subversion/libsvn_client/patch.c
  (apply_one_patch): 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=1705078&r1=1705077&r2=1705078&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_client/patch.c (original)
+++ subversion/trunk/subversion/libsvn_client/patch.c Thu Sep 24 14:51:18 2015
@@ -2422,12 +2422,12 @@ apply_one_patch(patch_target_t **patch_t
           /* Copy any remaining lines to target. (read: all lines) */
           SVN_ERR(copy_lines_to_target(target->content, 0, scratch_pool));
           if (!target->content->eof)
-          {
-            /* We could not copy the entire target file to the temporary
-            * file, and would truncate the target if we copied the
-            * temporary file on top of it. Skip this target. */
-            target->skipped = TRUE;
-          }
+            {
+              /* We could not copy the entire target file to the temporary
+               * file, and would truncate the target if we copied the
+               * temporary file on top of it. Skip this target. */
+              target->skipped = TRUE;
+            }
           has_text_changes = TRUE;
         }
     }