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 2016/04/21 11:00:02 UTC

svn commit: r1740260 - /subversion/trunk/tools/dev/svnmover/svnmover.c

Author: stsp
Date: Thu Apr 21 09:00:01 2016
New Revision: 1740260

URL: http://svn.apache.org/viewvc?rev=1740260&view=rev
Log:
* tools/dev/svnmover/svnmover.c
  (list_branches, list_all_branches): Fix "empty format string" warnings.

Modified:
    subversion/trunk/tools/dev/svnmover/svnmover.c

Modified: subversion/trunk/tools/dev/svnmover/svnmover.c
URL: http://svn.apache.org/viewvc/subversion/trunk/tools/dev/svnmover/svnmover.c?rev=1740260&r1=1740259&r2=1740260&view=diff
==============================================================================
--- subversion/trunk/tools/dev/svnmover/svnmover.c (original)
+++ subversion/trunk/tools/dev/svnmover/svnmover.c Thu Apr 21 09:00:01 2016
@@ -1745,7 +1745,7 @@ list_branches(svn_branch__txn_t *txn,
 
       SVN_ERR(list_branch(branch, with_elements, scratch_pool));
       if (with_elements) /* separate branches by a blank line */
-        svnmover_notify("");
+        svnmover_notify("%s", "");
     }
 
   for (i = 0; i < branches->nelts; i++)
@@ -1769,7 +1769,7 @@ list_branches(svn_branch__txn_t *txn,
         }
       SVN_ERR(list_branch(branch, with_elements, scratch_pool));
       if (with_elements) /* separate branches by a blank line */
-        svnmover_notify("");
+        svnmover_notify("%s", "");
     }
 
   return SVN_NO_ERROR;
@@ -1796,7 +1796,7 @@ list_all_branches(svn_branch__txn_t *txn
 
       SVN_ERR(list_branch(branch, with_elements, scratch_pool));
       if (with_elements) /* separate branches by a blank line */
-        svnmover_notify("");
+        svnmover_notify("%s", "");
     }
 
   return SVN_NO_ERROR;