Use default of 32 mega-operations instead of just 5
This commit is contained in:
parent
f9df788285
commit
468d273091
1 changed files with 1 additions and 1 deletions
2
main.c
2
main.c
|
@ -52,7 +52,7 @@ main(int argc, char *argv[])
|
||||||
FILE * outfile = stdout;
|
FILE * outfile = stdout;
|
||||||
int dec = 0;
|
int dec = 0;
|
||||||
uint32_t maxmem = 1000;
|
uint32_t maxmem = 1000;
|
||||||
uint32_t megaops = 5;
|
uint32_t megaops = 32;
|
||||||
char ch;
|
char ch;
|
||||||
char * passwd;
|
char * passwd;
|
||||||
int rc;
|
int rc;
|
||||||
|
|
Reference in a new issue