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/05/03 06:56:19 UTC

svn commit: r1592144 - /subversion/trunk/subversion/libsvn_subr/cmdline.c

Author: breser
Date: Sat May  3 04:56:18 2014
New Revision: 1592144

URL: http://svn.apache.org/r1592144
Log:
* subversion/libsvn_subr/cmdline.c
  (svn_cmdline__edit_string_externally): Use NULLs for pointers to booleans
    that could potentially be filled in rather than FALSE when calling
    svn_subst_translate_string2(), no functional change, stylistic.

Modified:
    subversion/trunk/subversion/libsvn_subr/cmdline.c

Modified: subversion/trunk/subversion/libsvn_subr/cmdline.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_subr/cmdline.c?rev=1592144&r1=1592143&r2=1592144&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_subr/cmdline.c (original)
+++ subversion/trunk/subversion/libsvn_subr/cmdline.c Sat May  3 04:56:18 2014
@@ -1345,7 +1345,7 @@ svn_cmdline__edit_string_externally(svn_
       /* Translate back to UTF8/LF if desired. */
       if (as_text)
         {
-          err = svn_subst_translate_string2(edited_contents, FALSE, FALSE,
+          err = svn_subst_translate_string2(edited_contents, NULL, NULL,
                                             *edited_contents, encoding, FALSE,
                                             pool, pool);
           if (err)