diff options
author | Michael Schroeder <mls@suse.de> | 2013-04-24 17:29:43 +0200 |
---|---|---|
committer | Michael Schroeder <mls@suse.de> | 2013-04-24 17:29:43 +0200 |
commit | 4cfb96910e7abc8aae0ee5a94e304ff72c6662e9 (patch) | |
tree | ee626981e108418a2d096dda1bc0642005527540 | |
parent | c6a683fc85284ba9ff774650005235001f853c2f (diff) | |
download | libsolv-4cfb96910e7abc8aae0ee5a94e304ff72c6662e9.tar.gz libsolv-4cfb96910e7abc8aae0ee5a94e304ff72c6662e9.tar.bz2 libsolv-4cfb96910e7abc8aae0ee5a94e304ff72c6662e9.zip |
solverdebug: add solver_get_orphaned call that somehow got lost
-rw-r--r-- | src/solverdebug.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/solverdebug.c b/src/solverdebug.c index 4b907ee..9053883 100644 --- a/src/solverdebug.c +++ b/src/solverdebug.c @@ -288,6 +288,7 @@ solver_printdecisions(Solver *solv) queue_init(&suggestions); queue_init(&orphaned); solver_get_recommendations(solv, &recommendations, &suggestions, 0); + solver_get_orphaned(solv, &orphaned); if (recommendations.count) { POOL_DEBUG(SOLV_DEBUG_RESULT, "recommended packages:\n"); |