From 4864ff1ba7deb51d90ac82c2c55cb21ecc47f63e Mon Sep 17 00:00:00 2001 From: Kent Baxley Date: Mon, 18 Jul 2011 17:03:52 -0500 Subject: Fixed small typo in src/audio_out/audio_directx2_out (LP #810407) --- src/audio_out/audio_directx2_out.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/audio_out/audio_directx2_out.c b/src/audio_out/audio_directx2_out.c index 4d7fe4e65..335aad1a7 100644 --- a/src/audio_out/audio_directx2_out.c +++ b/src/audio_out/audio_directx2_out.c @@ -389,7 +389,7 @@ static int audio_fill(dx2_driver_t *this, char *data, size_t size) { err = IDirectSoundBuffer_Lock(this->dsbuffer, this->write_pos, size, &ptr1, &size1, &ptr2, &size2, 0); /* try to restore the buffer, if necessary */ if (err == DSERR_BUFFERLOST) { - xine_log(this->class->xine, XINE_LOG_MSG, _(LOG_MODULE ": buffer lost, tryig to restore\n")); + xine_log(this->class->xine, XINE_LOG_MSG, _(LOG_MODULE ": buffer lost, trying to restore\n")); IDirectSoundBuffer_Restore(this->dsbuffer); err = IDirectSoundBuffer_Lock(this->dsbuffer, this->write_pos, size, &ptr1, &size1, &ptr2, &size2, 0); } if (err != DS_OK) { -- cgit v1.2.3