beta3 File::Path warning fix
[p5sagit/p5-mst-13.2.git] / lib / File / Path.pm
index 05c5bd9..6cb675b 100644 (file)
@@ -120,7 +120,8 @@ sub mkpath{
 
 sub rmtree {
     my($roots, $verbose, $safe) = @_;
-    my(@files,$count);
+    my(@files);
+    my($count) = 0;
     $roots = [$roots] unless ref $roots;
 
     foreach $root (@{$roots}) {