X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=audiod.c;h=ccc3f9b962b5d7627d16026b5820b0f9ab9a882f;hp=552577d538d4815f90e79b76c572a7fc28439fb9;hb=c9f109a9e7f2d6116b7906a852afc339c858c275;hpb=2ed89c59f0efcd0a2763f47c7d3455663241e623 diff --git a/audiod.c b/audiod.c index 552577d5..ccc3f9b9 100644 --- a/audiod.c +++ b/audiod.c @@ -987,16 +987,16 @@ static int write_audio_data(int slot_num) buf = &rn->buf; len = &rn->loaded; } - PARA_DEBUG_LOG("writing %p (%d bytes)\n", *buf, *len); + PARA_DEBUG_LOG("writing %p (%zd bytes)\n", *buf, *len); rv = write(s->write_fd, *buf, *len); - PARA_DEBUG_LOG("wrote %d/%d\n", rv, *len); + PARA_DEBUG_LOG("wrote %d/%zd\n", rv, *len); if (rv < 0) { PARA_WARNING_LOG("write error in slot %d (fd %d): %s\n", slot_num, s->write_fd, strerror(errno)); *len = 0; s->fci->error = E_WRITE_AUDIO_DATA; } else if (rv != *len) { - PARA_DEBUG_LOG("partial %s write (%i/%i) for slot %d\n", + PARA_DEBUG_LOG("partial %s write (%i/%zd) for slot %d\n", audio_formats[s->format], rv, *len, slot_num); *len -= rv; memmove(*buf, *buf + rv, *len); @@ -1545,7 +1545,7 @@ repeat: } else { status_buf[ret + sbo] = '\0'; sbo = for_each_line(status_buf, ret + sbo, - &check_stat_line, 0); + &check_stat_line); } } slot_io(&wfds);