You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2013/02/04 16:30:28 UTC

svn commit: r1442153 - /subversion/trunk/subversion/libsvn_wc/wc_db.c

Author: stsp
Date: Mon Feb  4 15:30:27 2013
New Revision: 1442153

URL: http://svn.apache.org/viewvc?rev=1442153&view=rev
Log:
Indentation fixes.

* subversion/libsvn_wc/wc_db.c
  (scan_deletion_txn, svn_wc__db_op_depth_moved_to): Add missing whitespace
   between keyword and opening bracket in several places.

Modified:
    subversion/trunk/subversion/libsvn_wc/wc_db.c

Modified: subversion/trunk/subversion/libsvn_wc/wc_db.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_wc/wc_db.c?rev=1442153&r1=1442152&r2=1442153&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/wc_db.c (original)
+++ subversion/trunk/subversion/libsvn_wc/wc_db.c Mon Feb  4 15:30:27 2013
@@ -3830,7 +3830,7 @@ scan_deletion_txn(const char **base_del_
     }
 
 
-  while(TRUE)
+  while (TRUE)
     {
       svn_error_t *err;
       const char *parent_relpath;
@@ -3838,7 +3838,7 @@ scan_deletion_txn(const char **base_del_
 
       /* Step CURRENT_RELPATH to op-root */
 
-      while(TRUE)
+      while (TRUE)
         {
           if (scan)
             {
@@ -3856,7 +3856,7 @@ scan_deletion_txn(const char **base_del_
                 }
             }
 
-          if(current_depth <= op_depth)
+          if (current_depth <= op_depth)
             break;
 
           current_relpath = svn_relpath_dirname(current_relpath, scratch_pool);
@@ -11569,7 +11569,7 @@ svn_wc__db_op_depth_moved_to(const char 
       if (!*moved_to_op_root_relpath)
         relpath = svn_relpath_dirname(relpath, scratch_pool);
     }
-  while(!*moved_to_op_root_relpath
+  while (!*moved_to_op_root_relpath
         && have_row && delete_op_depth < relpath_depth(relpath));
 
   if (*moved_to_op_root_relpath)
@@ -11578,7 +11578,7 @@ svn_wc__db_op_depth_moved_to(const char 
         = svn_relpath_join(*moved_to_op_root_relpath,
                            svn_relpath_skip_ancestor(relpath, local_relpath),
                            result_pool);
-      while(delete_op_depth < relpath_depth(relpath))
+      while (delete_op_depth < relpath_depth(relpath))
         relpath = svn_relpath_dirname(relpath, scratch_pool);
       *op_root_relpath = apr_pstrdup(result_pool, relpath);
     }