diff options
author | Kent Baxley <kb4xley@gmail.com> | 2011-07-18 17:03:52 -0500 |
---|---|---|
committer | Kent Baxley <kb4xley@gmail.com> | 2011-07-18 17:03:52 -0500 |
commit | 4864ff1ba7deb51d90ac82c2c55cb21ecc47f63e (patch) | |
tree | acc14d12967a6eee21696039a7d057e16b14277d /src | |
parent | 39e5bc17d00ba44cf921390b49c15da86883913c (diff) | |
download | xine-lib-4864ff1ba7deb51d90ac82c2c55cb21ecc47f63e.tar.gz xine-lib-4864ff1ba7deb51d90ac82c2c55cb21ecc47f63e.tar.bz2 |
Fixed small typo in src/audio_out/audio_directx2_out (LP #810407)
Diffstat (limited to 'src')
-rw-r--r-- | src/audio_out/audio_directx2_out.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |