Author: stsp
Date: Mon Jan 21 13:39:45 2013
New Revision: 1436341

URL: http://svn.apache.org/viewvc?rev=1436341&view=rev
Log:
* subversion/libsvn_client/patch.c
  (readline_symlink, write_symlink): Whitespace/indentation tweaks.

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=1436341&r1=1436340&r2=1436341&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_client/patch.c (original)
+++ subversion/trunk/subversion/libsvn_client/patch.c Mon Jan 21 13:39:45 2013
@@ -861,10 +861,9 @@ readline_symlink(void *baton, svn_string
   else
     {
       svn_string_t *dest;
-      SVN_ERR(svn_io_read_link(&dest, sb->local_abspath, scratch_pool));
 
+      SVN_ERR(svn_io_read_link(&dest, sb->local_abspath, scratch_pool));
       *line = svn_stringbuf_createf(result_pool, "link %s", dest->data);
-
       sb->at_eof = TRUE;
     }
 
@@ -898,7 +897,7 @@ seek_symlink(void *baton, apr_off_t offs
  * The contents of BUF must be a valid "normal form" of a symlink. */
 static svn_error_t *
 write_symlink(void *baton, const char *buf, apr_size_t len,
-           apr_pool_t *scratch_pool)
+              apr_pool_t *scratch_pool)
 {
   const char *target_abspath = baton;
   const char *new_name;


Reply via email to