diff options
author | jkoshy <jkoshy@FreeBSD.org> | 1999-11-11 06:53:38 +0000 |
---|---|---|
committer | jkoshy <jkoshy@FreeBSD.org> | 1999-11-11 06:53:38 +0000 |
commit | 666a88e6dc00ecf5e384ee03d76d8575258a37bd (patch) | |
tree | aa3bdd9104afe1f40ea84fcd1b729ad20732f541 /audio/mpg123 | |
parent | e5114c56dd3a1a984eccdfa2d872d8d6392ca2fc (diff) | |
download | FreeBSD-ports-666a88e6dc00ecf5e384ee03d76d8575258a37bd.zip FreeBSD-ports-666a88e6dc00ecf5e384ee03d76d8575258a37bd.tar.gz |
Remove a redundant `getenv()' call in this patch.
Diffstat (limited to 'audio/mpg123')
-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 aab75fe..4de29e5 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); } |