File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -573,8 +573,8 @@ int main(const int argc, const char** argv)
573573 }
574574 if (argc == 3 ) {
575575 extraDigits = atoi (argv[2 ]);
576- if ((extraDigits < 0 ) || (extraDigits> 2 )) {
577- fprintf (stderr, " error: parameter extraDigits must be in [0..2 ]\n\n " );
576+ if ((extraDigits < 0 ) || (extraDigits> 8 )) {
577+ fprintf (stderr, " error: parameter extraDigits must be in [0..8 ]\n\n " );
578578 usage (appName);
579579 return NORMAL_ERROR;
580580 }
@@ -652,8 +652,8 @@ int main(const int argc, const char** argv)
652652 }
653653 if (argc >= 4 ) {
654654 extraDigits = atoi (argv[3 ]);
655- if ((extraDigits < 0 ) || (extraDigits > 2 )) {
656- fprintf (stderr, " error: parameter extraDigits must be in [0..2 ]\n\n " );
655+ if ((extraDigits < 0 ) || (extraDigits > 8 )) {
656+ fprintf (stderr, " error: parameter extraDigits must be in [0..8 ]\n\n " );
657657 usage (appName);
658658 return NORMAL_ERROR;
659659 }
You can’t perform that action at this time.
0 commit comments