X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=afh.c;h=86f34ace67e0efcba11fb9ddfe1a2f23ca2416b7;hp=2ff2c7867e255f2c7b5b5c9cdc5ae7eb453bc59a;hb=8f79f577f809506a12799cb97dba1f111c014df5;hpb=9d3d1339845435d5d7bb44b858ea6b3a94ce2cb9 diff --git a/afh.c b/afh.c index 2ff2c786..86f34ace 100644 --- a/afh.c +++ b/afh.c @@ -105,11 +105,9 @@ static int cat_file(void *audio_file_data, struct afh_info *afhi) } } PARA_INFO_LOG("writing chunk %lu\n", i); - ret = write(STDOUT_FILENO, buf, size); + ret = write_all(STDOUT_FILENO, buf, &size); if (ret < 0) return ret; - if (ret != size) - return -E_AFH_SHORT_WRITE; } return 1; }