This commit is contained in:
guinux
2014-11-24 21:34:23 +01:00
parent da70da90da
commit 6024012729
4 changed files with 35 additions and 30 deletions

View File

@@ -187,7 +187,7 @@ static void walk_reverse_deps(Package pkg, int depth) {
if((max_depth >= 0) && (depth > max_depth)) return;
walked.add(pkg.name);
unowned Alpm.List<string?> required_by = pkg.compute_requiredby ();
Alpm.List<string?> required_by = pkg.compute_requiredby ();
foreach(string? i in required_by) {
string pkgname = i;