From 1707e0f9e2185d58a62ea02dea097ef6f1f92300 Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Wed, 23 Jan 2002 06:48:13 +0000 Subject: [PATCH] Indent. --- generator.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/generator.c b/generator.c index 353e7061..16c56182 100644 --- a/generator.c +++ b/generator.c @@ -99,25 +99,25 @@ static int adapt_block_size(struct file_struct *file, int bsize) /* send a sums struct down a fd */ -static void send_sums(struct sum_struct *s,int f_out) +static void send_sums(struct sum_struct *s, int f_out) { int i; - + /* tell the other guy how many we are going to be doing and how many bytes there are in the last chunk */ - write_int(f_out,s?s->count:0); - write_int(f_out,s?s->n:block_size); - write_int(f_out,s?s->remainder:0); + write_int(f_out, s ? s->count : 0); + write_int(f_out, s ? s->n : block_size); + write_int(f_out, s ? s->remainder : 0); - if (!s) return; + if (!s) + return; - for (i=0;icount;i++) { - write_int(f_out,s->sums[i].sum1); - write_buf(f_out,s->sums[i].sum2,csum_length); + for (i = 0; i < s->count; i++) { + write_int(f_out, s->sums[i].sum1); + write_buf(f_out, s->sums[i].sum2, csum_length); } } - /* generate a stream of signatures/checksums that describe a buffer -- 2.34.1