Commit 93092e21 authored by lpsolit%gmail.com's avatar lpsolit%gmail.com

Bug 370885: Arrows in dependency graphs are drawn the wrong way - Patch by…

Bug 370885: Arrows in dependency graphs are drawn the wrong way - Patch by Fré©ric Buclin <LpSolit@gmail.com> r=wicked r=wurblzap r=mkanat a=LpSolit
parent 0ffa0857
......@@ -89,7 +89,7 @@ sub AddLink {
my $key = "$blocked,$dependson";
if (!exists $edgesdone{$key}) {
$edgesdone{$key} = 1;
print $fh "$blocked -> $dependson\n";
print $fh "$dependson -> $blocked\n";
$seen{$blocked} = 1;
$seen{$dependson} = 1;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment