output/openal: use audio_format_to_string()

This commit is contained in:
Max Kellermann 2009-11-15 16:20:20 +01:00
parent 5d1e5f4ea0
commit 39404725f0
1 changed files with 3 additions and 3 deletions

View File

@ -156,10 +156,10 @@ openal_open(void *data, struct audio_format *audio_format,
od->format = openal_audio_format(audio_format);
if (!od->format) {
struct audio_format_string s;
g_set_error(error, openal_output_quark(), 0,
"Unsupported audio format (%i channels, %i bps)",
audio_format->channels,
audio_format->bits);
"Unsupported audio format: %s",
audio_format_to_string(audio_format, &s));
return false;
}