tests/file_check: remove unused variable
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Reviewed-by: Ryan Moeller <ryan@iXsystems.com> Signed-off-by: Ahelenia Ziemiańska <nabijaczleweli@nabijaczleweli.xyz> Closes #12187
This commit is contained in:
parent
e20186f5d5
commit
ac9b1aa1bf
|
@ -40,7 +40,6 @@ main(int argc, char **argv)
|
||||||
long i, n;
|
long i, n;
|
||||||
unsigned char fillchar = DATA;
|
unsigned char fillchar = DATA;
|
||||||
int bigbuffersize = BIGBUFFERSIZE;
|
int bigbuffersize = BIGBUFFERSIZE;
|
||||||
int64_t read_count = 0;
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Validate arguments
|
* Validate arguments
|
||||||
|
@ -78,8 +77,6 @@ main(int argc, char **argv)
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
read_count += n;
|
|
||||||
} while (n == bigbuffersize);
|
} while (n == bigbuffersize);
|
||||||
|
|
||||||
return (0);
|
return (0);
|
||||||
|
|
Loading…
Reference in New Issue