diff options
author | Taylor Holberton <taylorcholberton@gmail.com> | 2016-11-18 20:38:40 -0800 |
---|---|---|
committer | Taylor Holberton <taylorcholberton@gmail.com> | 2016-11-18 20:38:40 -0800 |
commit | 2386a422c14195666215d78214446217be34640d (patch) | |
tree | 01f2353436202cc3553060b9bffbce356516de6f | |
parent | eccd781875925157a01a755d555b7e1e6d80fae1 (diff) |
initializing 'result' from transfer struct
-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) { |