build warnings: initialise values...

... to make fix gcc warnings with -Wall.

Signed-off-by: Hiltjo Posthuma <hiltjo@codemadness.org>
This commit is contained in:
Hiltjo Posthuma
2014-05-12 11:01:47 +00:00
committed by sin
parent 11eef783fe
commit 5b3a0a9382
2 changed files with 4 additions and 5 deletions

View File

@@ -27,9 +27,9 @@ main(int argc, char *argv[])
char *prefix = "x";
char *file = NULL;
char *tmp, *end;
uint64_t size = 1000, scale, n;
uint64_t size = 1000, scale = 1, n;
int always = 0;
FILE *in=stdin, *out=NULL;
FILE *in = stdin, *out = NULL;
ARGBEGIN {
case 'b':