FreeCalypso > hg > themwi-system-sw
changeset 7:7749ae8b6414
themwi-dump-numdb: NANP output looks better without the '-' after +1
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 26 Jun 2022 12:26:45 -0800 |
parents | 030143a95fb5 |
children | ffd48df829a7 |
files | utils/themwi-dump-numdb.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/utils/themwi-dump-numdb.c Sun Jun 26 12:17:36 2022 -0800 +++ b/utils/themwi-dump-numdb.c Sun Jun 26 12:26:45 2022 -0800 @@ -31,7 +31,7 @@ count); exit(1); } - printf("Owned NANP number: +1-%llu\n", rec); + printf("Owned NANP number: +1%llu\n", rec); } } @@ -63,7 +63,7 @@ count); exit(1); } - printf("Short number %04u maps to +1-%06u%04u\n", + printf("Short number %04u maps to +1%06u%04u\n", rec.short_code, rec.prefix, rec.short_code); } }