diff options
author | Joseph Koshy <jkoshy@FreeBSD.org> | 1999-11-11 06:53:38 +0000 |
---|---|---|
committer | Joseph Koshy <jkoshy@FreeBSD.org> | 1999-11-11 06:53:38 +0000 |
commit | 2eb46161f08c1ff31bdab14d1738aba251df8cee (patch) | |
tree | daf7d0316bd5efc997b6d516750e1e39836226c1 /audio | |
parent | Add ESound support to the mpg123 port. (diff) |
Remove a redundant `getenv()' call in this patch.
Notes
Notes:
svn path=/head/; revision=23020
Diffstat (limited to 'audio')
-rw-r--r-- | audio/mpg123/files/patch-ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/mpg123/files/patch-ac b/audio/mpg123/files/patch-ac index aab75fe98f8b..4de29e5762b2 100644 --- a/audio/mpg123/files/patch-ac +++ b/audio/mpg123/files/patch-ac @@ -5,7 +5,7 @@ return -1; - ai->fn = esd_play_stream_fallback(format, ai->rate, esdserver, "mpg123"); -+ ai->fn = esd_play_stream_fallback(format, ai->rate, getenv("ESPEAKER"), "mpg123"); ++ ai->fn = esd_play_stream_fallback(format, ai->rate, NULL, "mpg123"); return (ai->fn); } |