diff options
author | Chris Robinson <[email protected]> | 2009-12-26 08:16:25 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2009-12-26 08:16:25 -0800 |
commit | 7bc739e965ff45b5c9504d90883ffe167f7d50d3 (patch) | |
tree | 1dd2c743ab5a6638ae314305191a54236ee1d838 | |
parent | 9f988808c7c18cb063fd1d476d970cce6766caa9 (diff) |
Use the proper logging function
-rw-r--r-- | Alc/portaudio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/portaudio.c b/Alc/portaudio.c index ff4f2051..a190bea8 100644 --- a/Alc/portaudio.c +++ b/Alc/portaudio.c @@ -216,7 +216,7 @@ static void pa_close_playback(ALCdevice *device) err = pPa_CloseStream(data->stream); if(err != paNoError) - fprintf(stderr, "Error closing stream: %s\n", pPa_GetErrorText(err)); + AL_PRINT("Error closing stream: %s\n", pPa_GetErrorText(err)); free(data); device->ExtraData = NULL; |