diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2003-12-17 10:41:56 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2003-12-17 10:41:56 +0000 |
commit | 9de830057ebc29c4c5bf58665c7520093d1e14ba (patch) | |
tree | 3762335d6b1757d145982b7980eebdfe3097616b /perl-install | |
parent | 9afc0d26fb8cad748c8ad38bbf68d499ee931a73 (diff) | |
download | drakx-9de830057ebc29c4c5bf58665c7520093d1e14ba.tar drakx-9de830057ebc29c4c5bf58665c7520093d1e14ba.tar.gz drakx-9de830057ebc29c4c5bf58665c7520093d1e14ba.tar.bz2 drakx-9de830057ebc29c4c5bf58665c7520093d1e14ba.tar.xz drakx-9de830057ebc29c4c5bf58665c7520093d1e14ba.zip |
fix wrong message in error patch (catched by new perl_checker)
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/harddrake/sound.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/harddrake/sound.pm b/perl-install/harddrake/sound.pm index 747a56e7c..63ca1f0f0 100644 --- a/perl-install/harddrake/sound.pm +++ b/perl-install/harddrake/sound.pm @@ -234,8 +234,8 @@ The new \"%s\" driver'll only be used on next bootstrap.", $driver, $new_driver) [ &get_any_driver_entry($in, $driver, $device) ]); } else { $in->ask_warn(N("Unknown driver"), - N("Error: The \"%s\" driver for your sound card is unlisted"), - $driver); + N("Error: The \"%s\" driver for your sound card is unlisted", + $driver)); } end: } |