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:
parent
c5c86452ce
commit
8de179ef7b
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -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.
|
||||
*
|
||||
|
|
Loading…
Reference in New Issue