From 1a211d812f1808a5a9128cbfd74bb59d07487b1c Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 17 Nov 2010 17:54:49 +0000 Subject: [PATCH] * Oops. --- scripts/download-using-manifests.pl.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/download-using-manifests.pl.in b/scripts/download-using-manifests.pl.in index c31a294e88..c50f540f34 100644 --- a/scripts/download-using-manifests.pl.in +++ b/scripts/download-using-manifests.pl.in @@ -90,7 +90,7 @@ sub computeSmallestDownload { while ($queueFront < scalar @queue) { my $u = $queue[$queueFront++]; - return if defined $done{$u}; + next if defined $done{$u}; $done{$u} = 1; addNode \%graph, $u;