summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuenter Bartsch <guenter@users.sourceforge.net>2001-12-01 13:10:53 +0000
committerGuenter Bartsch <guenter@users.sourceforge.net>2001-12-01 13:10:53 +0000
commitce25302ffa3804df57836651cf8b7f8854c340b2 (patch)
tree1e1ec7b601ebf2a3fbe28591e2ab4c8cc3fa2601
parente83128d4e0e1882a53943c2df3f7e64885223a3a (diff)
downloadxine-lib-ce25302ffa3804df57836651cf8b7f8854c340b2.tar.gz
xine-lib-ce25302ffa3804df57836651cf8b7f8854c340b2.tar.bz2
small bugfix from Stefan Bittner <sbi@pobox.com>
CVS patchset: 1148 CVS date: 2001/12/01 13:10:53
-rw-r--r--src/audio_out/audio_oss_out.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/audio_out/audio_oss_out.c b/src/audio_out/audio_oss_out.c
index 2da37be12..ca35f21b9 100644
--- a/src/audio_out/audio_oss_out.c
+++ b/src/audio_out/audio_oss_out.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: audio_oss_out.c,v 1.52 2001/11/30 00:53:50 f1rmb Exp $
+ * $Id: audio_oss_out.c,v 1.53 2001/12/01 13:10:53 guenter Exp $
*
* 20-8-2001 First implementation of Audio sync and Audio driver separation.
* Copyright (C) 2001 James Courtier-Dutton James@superbug.demon.co.uk
@@ -640,7 +640,7 @@ ao_driver_t *init_audio_out_plugin (config_values_t *config) {
if (ioctl(audio_fd, SNDCTL_DSP_GETODELAY, &info) != -1) {
printf("audio_oss_out: using SNDCTL_DSP_GETODELAY\n");
this->sync_method = OSS_SYNC_GETODELAY;
- } else if (ioctl(this->audio_fd, SNDCTL_DSP_GETOPTR, &info) != -1) {
+ } else if (ioctl(audio_fd, SNDCTL_DSP_GETOPTR, &info) != -1) {
printf("audio_oss_out: using SNDCTL_DSP_GETOPTR\n");
this->sync_method = OSS_SYNC_GETOPTR;
} else