From a67cdf81d7abce658229c430aeaffb4254e55770 Mon Sep 17 00:00:00 2001 From: Ray Miller Date: Mon, 22 Aug 2011 10:38:50 +0100 Subject: [PATCH] Bugfix depth argument to recursive call --- svn-find.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/svn-find.pl b/svn-find.pl index b1b35cd..0bf971b 100755 --- a/svn-find.pl +++ b/svn-find.pl @@ -52,7 +52,7 @@ sub svn_find { } for my $dir ( grep m{/$}, @dirents ) { - svn_find( $repos_url . $dir, $depth++ ); + svn_find( $repos_url . $dir, $depth + 1 ); } }