diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2021-10-31 04:19:09 +0100 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2021-10-31 05:38:18 +0100 |
commit | 251676561b5cc8b47d525813ef7555a6e363eeb6 (patch) | |
tree | 2635997ffa24636f0042b720e3cbf2538be2ff2e /urpm/select.pm | |
parent | e2d0c0467fb8f5da527f38aa04b2288dbce00a4e (diff) | |
download | urpmi-251676561b5cc8b47d525813ef7555a6e363eeb6.tar urpmi-251676561b5cc8b47d525813ef7555a6e363eeb6.tar.gz urpmi-251676561b5cc8b47d525813ef7555a6e363eeb6.tar.bz2 urpmi-251676561b5cc8b47d525813ef7555a6e363eeb6.tar.xz urpmi-251676561b5cc8b47d525813ef7555a6e363eeb6.zip |
Remove uneeded arg
Diffstat (limited to 'urpm/select.pm')
-rw-r--r-- | urpm/select.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/urpm/select.pm b/urpm/select.pm index b77303ae..57bde8aa 100644 --- a/urpm/select.pm +++ b/urpm/select.pm @@ -769,7 +769,7 @@ sub migrate_forward_rpmdb_db_if_needed { if (-f "$urpm->{root}/var/lib/rpm/Packages") { $urpm->{debug} and $urpm->{debug}("Migrating chrooted db"); $urpm->{need_migrate_rpmdb_now} = '4.16'; - urpm::sys::migrate_forward_rpmdb_db_version($urpm, $urpm->{root}); + urpm::sys::migrate_forward_rpmdb_db_version($urpm); return 1; } } |