Commit a1cbe76e authored by Wayne Davison's avatar Wayne Davison

Changed one size_t var into an int32.

parent 98bf61c8
......@@ -187,7 +187,7 @@ static void sum_sizes_sqroot(struct sum_struct *sum, int64 len)
*/
static void generate_and_send_sums(int fd, OFF_T len, int f_out, int f_copy)
{
size_t i;
int32 i;
struct map_struct *mapbuf;
struct sum_struct sum;
OFF_T offset = 0;
......
......@@ -47,7 +47,7 @@ extern struct stats stats;
static struct sum_struct *receive_sums(int f)
{
struct sum_struct *s;
size_t i;
int32 i;
OFF_T offset = 0;
if (!(s = new(struct sum_struct)))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment