output_control: make audio_output_open() static

audio_output_open() is only called by audio_output_update().  Don't
export it.
This commit is contained in:
Max Kellermann 2009-03-09 19:11:13 +01:00
parent c5c86452ce
commit 8de179ef7b
2 changed files with 1 additions and 5 deletions

View File

@ -55,7 +55,7 @@ static void ao_command_async(struct audio_output *ao,
notify_signal(&ao->notify);
}
bool
static bool
audio_output_open(struct audio_output *ao,
const struct audio_format *audio_format)
{

View File

@ -39,10 +39,6 @@ bool
audio_output_init(struct audio_output *ao, const struct config_param *param,
GError **error);
bool
audio_output_open(struct audio_output *ao,
const struct audio_format *audio_format);
/**
* Opens or closes the device, depending on the "enabled" flag.
*