diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2005-10-17 16:26:37 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2005-10-17 16:26:37 +0000 |
commit | c6a07b8961ceac6afcdd2760392d76e2e723d9d6 (patch) | |
tree | aeae56d9fe51e8c9904f20e1796f26819ef1707a /perl-install/harddrake/sound.pm | |
parent | 43219968a4826405da3b00262fd8c66bdf5cdc15 (diff) | |
download | drakx-c6a07b8961ceac6afcdd2760392d76e2e723d9d6.tar drakx-c6a07b8961ceac6afcdd2760392d76e2e723d9d6.tar.gz drakx-c6a07b8961ceac6afcdd2760392d76e2e723d9d6.tar.bz2 drakx-c6a07b8961ceac6afcdd2760392d76e2e723d9d6.tar.xz drakx-c6a07b8961ceac6afcdd2760392d76e2e723d9d6.zip |
make it somewhat clearer
Diffstat (limited to 'perl-install/harddrake/sound.pm')
-rw-r--r-- | perl-install/harddrake/sound.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/harddrake/sound.pm b/perl-install/harddrake/sound.pm index a72887a38..f713d5aa8 100644 --- a/perl-install/harddrake/sound.pm +++ b/perl-install/harddrake/sound.pm @@ -259,7 +259,7 @@ To use alsa, one can either use: help => join("\n\n", map { qq("$_": ) . $des{$_} } @alternative), allow_empty_list => 1, format => sub { my ($drv) = @_; - sprintf(($des{$drv} ? "$des{$drv} (%s)" : "%s"), ($drv =~ /^snd[-_]/) ? "$drv [ALSA]" : "$drv [OSS]"); + sprintf(($des{$drv} ? "$des{$drv} (%s [%s])" : "%s [%s]"), $drv, ($drv =~ /^snd[-_]/) ? 'ALSA' : 'OSS'); } }, { |