Fix warning condition

This commit is contained in:
Dominik Schmidt 2012-04-15 14:35:38 +02:00
parent 8312e4430c
commit 87bc7ca4cc

View file

@ -742,7 +742,7 @@ static int uncompress_reader(void *userdata, const char *buf, size_t len)
if( buf && writeCtx->fd ) {
/* DEBUG_WEBDAV(("Writing NON compressed %d bytes\n", len)); */
len = write(writeCtx->fd, buf, len);
written = write(writeCtx->fd, buf, len);
if( len != written ) {
DEBUG_WEBDAV(("WRN: uncompress_reader wrote wrong num of bytes\n"));
}