diff options
author | Michael Schroeder <mls@suse.de> | 2013-06-04 19:47:06 +0200 |
---|---|---|
committer | Michael Schroeder <mls@suse.de> | 2013-06-04 19:47:06 +0200 |
commit | 9156031dfe67432eabef27b98fc11fd60ffcb936 (patch) | |
tree | 40960a843949b076400b1ee181dcef3efe774f60 /examples | |
parent | 38b3900d976d0e522f8102289bb9d79e7b1757b6 (diff) | |
download | libsolv-9156031dfe67432eabef27b98fc11fd60ffcb936.tar.gz libsolv-9156031dfe67432eabef27b98fc11fd60ffcb936.tar.bz2 libsolv-9156031dfe67432eabef27b98fc11fd60ffcb936.zip |
missed a change
Diffstat (limited to 'examples')
-rwxr-xr-x | examples/p5solv | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/p5solv b/examples/p5solv index 2e3e3ed..f11e93e 100755 --- a/examples/p5solv +++ b/examples/p5solv @@ -683,7 +683,7 @@ for my $c ($trans->classify($solv::Transaction::SOLVER_TRANSACTION_SHOW_OBSOLETE } elsif ($c->{'type'} == $solv::Transaction::SOLVER_TRANSACTION_VENDORCHANGE) { printf "$c->{'count'} vendor changes from '%s' to '%s':\n", $c->{'fromstr'}, $c->{'tostr'}; } elsif ($c->{'type'} == $solv::Transaction::SOLVER_TRANSACTION_ARCHCHANGE) { - printf "$c->{'count'} arch changes from '%s' to '%s':\n", $c->{'fromstr'}->str(), $c->{'tostr'}; + printf "$c->{'count'} arch changes from '%s' to '%s':\n", $c->{'fromstr'}, $c->{'tostr'}; } else { next; } |