diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2010-11-17T17·54+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2010-11-17T17·54+0000 |
commit | 1a211d812f1808a5a9128cbfd74bb59d07487b1c (patch) | |
tree | dda0e51a721ef80e56ab3526edad705b85cb5ead /scripts | |
parent | a4f0365b2dfc95b60c42a702937fc801dcc8d81b (diff) |
* Oops.
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/download-using-manifests.pl.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/download-using-manifests.pl.in b/scripts/download-using-manifests.pl.in index c31a294e8800..c50f540f3464 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; |