1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-26 05:02:18 +00:00

Remove a redundant `getenv()' call in this patch.

This commit is contained in:
Joseph Koshy 1999-11-11 06:53:38 +00:00
parent f6dfb71844
commit 2eb46161f0
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=23020

View File

@ -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);
}