Author: danielsh
Date: Wed Jan 25 08:40:00 2012
New Revision: 1235684
URL: http://svn.apache.org/viewvc?rev=1235684&view=rev
Log:
No functional change.
* tools/client-side/svnmucc/svnmucc.c
(execute): Move a declaration to resolve a compiler warning.
Modified:
subversion/trunk/tools/client-side/svnmucc/svnmucc.c
Modified: subversion/trunk/tools/client-side/svnmucc/svnmucc.c
URL:
http://svn.apache.org/viewvc/subversion/trunk/tools/client-side/svnmucc/svnmucc.c?rev=1235684&r1=1235683&r2=1235684&view=diff
==============================================================================
--- subversion/trunk/tools/client-side/svnmucc/svnmucc.c (original)
+++ subversion/trunk/tools/client-side/svnmucc/svnmucc.c Wed Jan 25 08:40:00
2012
@@ -660,9 +660,9 @@ execute(const apr_array_header_t *action
for (i = 0; i < actions->nelts; ++i)
{
struct action *action = APR_ARRAY_IDX(actions, i, struct action *);
+ const char *path1, *path2;
switch (action->action)
{
- const char *path1, *path2;
case ACTION_MV:
path1 = subtract_anchor(anchor, action->path[0], pool);
path2 = subtract_anchor(anchor, action->path[1], pool);