You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by gb...@apache.org on 2013/09/24 12:50:06 UTC

svn commit: r1525836 - /subversion/branches/invoke-diff-cmd-feature/subversion/libsvn_subr/io.c

Author: gbg
Date: Tue Sep 24 10:50:05 2013
New Revision: 1525836

URL: http://svn.apache.org/r1525836
Log:
Cosmetic change only: Fix spacing and indentation.

* subversion/libsvn_subr/io.c

  (svn_io_create_custom_diff_cmd): Fix indentation and spacing.

Modified:
    subversion/branches/invoke-diff-cmd-feature/subversion/libsvn_subr/io.c

Modified: subversion/branches/invoke-diff-cmd-feature/subversion/libsvn_subr/io.c
URL: http://svn.apache.org/viewvc/subversion/branches/invoke-diff-cmd-feature/subversion/libsvn_subr/io.c?rev=1525836&r1=1525835&r2=1525836&view=diff
==============================================================================
--- subversion/branches/invoke-diff-cmd-feature/subversion/libsvn_subr/io.c (original)
+++ subversion/branches/invoke-diff-cmd-feature/subversion/libsvn_subr/io.c Tue Sep 24 10:50:05 2013
@@ -3044,10 +3044,10 @@ svn_io_create_custom_diff_cmd(const char
   tmp = svn_cstring_split(cmd, " ", TRUE, scratch_pool);
 
   result = apr_palloc(pool, 
-                   (tmp->nelts + 1) * 
-                   tmp->elt_size*sizeof(char *));  
+                      (tmp->nelts + 1) * 
+                      tmp->elt_size*sizeof(char *));  
 
-  for (argv = 0;  argv < tmp->nelts ; argv++)
+  for (argv = 0; argv < tmp->nelts; argv++)
     {
       svn_stringbuf_t *com;
       int i;
@@ -3067,7 +3067,7 @@ svn_io_create_custom_diff_cmd(const char
           svn_stringbuf_appendcstr(token, token_list[i]);
           len = 0;
 
-          while ( (found = strstr(com->data, token->data)) && 
+          while ( (found = strstr(com->data, token->data) && 
                   (strlen(found) > len) ) 
             {
               len = strlen(found);