diff options
-rw-r--r-- | src/pcm.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -495,7 +495,7 @@ int pcm_write(struct pcm *pcm, const void *data, unsigned int count) x.buf = (void*)data; x.frames = count / (pcm->config.channels * pcm_format_to_bits(pcm->config.format) / 8); - + x.result = 0; for (;;) { if (!pcm->running) { int prepare_error = pcm_prepare(pcm); @@ -544,7 +544,7 @@ int pcm_read(struct pcm *pcm, void *data, unsigned int count) x.buf = data; x.frames = count / (pcm->config.channels * pcm_format_to_bits(pcm->config.format) / 8); - + x.result = 0; for (;;) { if (!pcm->running) { if (pcm_start(pcm) < 0) { |