Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
qnx: Fixed error message.
- Loading branch information
Showing
with
1 addition
and
1 deletion.
-
+1
−1
src/audio/qsa/SDL_qsa_audio.c
|
@@ -441,7 +441,7 @@ QSA_OpenDevice(_THIS, void *handle, const char *devname, int iscapture) |
|
|
/* Setup the transfer parameters according to cparams */ |
|
|
status = snd_pcm_plugin_params(this->hidden->audio_handle, &cparams); |
|
|
if (status < 0) { |
|
|
return QSA_SetError("snd_pcm_channel_params", status); |
|
|
return QSA_SetError("snd_pcm_plugin_params", status); |
|
|
} |
|
|
|
|
|
/* Make sure channel is setup right one last time */ |
|
|