aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornotdave22 <dme2223@gmail.com>2020-09-04 06:27:33 -0500
committernotdave22 <dme2223@gmail.com>2020-09-04 06:27:33 -0500
commited119360fdf208fc4d36155ace14d12a8b04c018 (patch)
tree6a63aab0444818f738b066d713a5538918a1f358
parent563ee74ad551d08ea2b5e8dee2ac542c883b9f4b (diff)
per pcm_writei ' @return On success, this function returns the number of frames written; otherwise, a negative number.'
-rw-r--r--examples/pcm-writei.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/pcm-writei.c b/examples/pcm-writei.c
index c6ea1e2..19eafac 100644
--- a/examples/pcm-writei.c
+++ b/examples/pcm-writei.c
@@ -74,7 +74,7 @@ static int write_frames(const void * frames, size_t byte_count){
unsigned int frame_count = pcm_bytes_to_frames(pcm, byte_count);
int err = pcm_writei(pcm, frames, frame_count);
- if (err != 0) {
+ if (err < 0) {
printf("error: %s\n", pcm_get_error(pcm));
}