Make sha1flush void and remove conditional return.

Signed-off-by: David Rientjes <rientjes@google.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
David Rientjes
2006-08-14 13:32:01 -07:00
committed by Junio C Hamano
parent 59076eba6e
commit 78b713a1d0

View File

@ -10,7 +10,7 @@
#include "cache.h" #include "cache.h"
#include "csum-file.h" #include "csum-file.h"
static int sha1flush(struct sha1file *f, unsigned int count) static void sha1flush(struct sha1file *f, unsigned int count)
{ {
void *buf = f->buffer; void *buf = f->buffer;
@ -21,7 +21,7 @@ static int sha1flush(struct sha1file *f, unsigned int count)
count -= ret; count -= ret;
if (count) if (count)
continue; continue;
return 0; return;
} }
if (!ret) if (!ret)
die("sha1 file '%s' write error. Out of diskspace", f->name); die("sha1 file '%s' write error. Out of diskspace", f->name);