You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by br...@apache.org on 2014/01/17 17:43:30 UTC

svn commit: r1559177 - /subversion/trunk/subversion/svn/log-cmd.c

Author: breser
Date: Fri Jan 17 16:43:29 2014
New Revision: 1559177

URL: http://svn.apache.org/r1559177
Log:
Fix the fact that my editor decided not to follow style entirely.
No functional change.

* subversion/svn/log-cmd.c
  (svn_cl__log_entry_receiver_xml): split up else and brakets per our style

Modified:
    subversion/trunk/subversion/svn/log-cmd.c

Modified: subversion/trunk/subversion/svn/log-cmd.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/svn/log-cmd.c?rev=1559177&r1=1559176&r2=1559177&view=diff
==============================================================================
--- subversion/trunk/subversion/svn/log-cmd.c (original)
+++ subversion/trunk/subversion/svn/log-cmd.c Fri Jan 17 16:43:29 2014
@@ -555,7 +555,9 @@ svn_cl__log_entry_receiver_xml(void *bat
                             log_entry->subtractive_merge ? "true" : "false",
                             SVN_VA_NULL);
 
-    } else {
+    }
+  else
+    {
         svn_xml_make_open_tag(&sb, pool, svn_xml_normal, "logentry",
                               "revision", revstr, SVN_VA_NULL);
     }