Minor tweak to output when using alternate
This commit is contained in:
parent
3ec7e75ffd
commit
f4b935d8c6
1 changed files with 4 additions and 1 deletions
|
@ -256,7 +256,10 @@ int main(int argc, char **argv) {
|
|||
--argc; ++argv;
|
||||
}
|
||||
|
||||
if(isAlt && max > 99) { max = 99; }
|
||||
if(isAlt) {
|
||||
printf("Using alternate Korean numbers, ");
|
||||
if(max > 99) { max = 99; }
|
||||
}
|
||||
printf("Maximum value is set to %llu\n", max);
|
||||
|
||||
unsigned long long value;
|
||||
|
|
Loading…
Reference in a new issue