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