Use default of 32 mega-operations instead of just 5

This commit is contained in:
Chris Oei 2012-09-02 20:56:24 -07:00
parent f9df788285
commit 468d273091

2
main.c
View file

@ -52,7 +52,7 @@ main(int argc, char *argv[])
FILE * outfile = stdout;
int dec = 0;
uint32_t maxmem = 1000;
uint32_t megaops = 5;
uint32_t megaops = 32;
char ch;
char * passwd;
int rc;