# HG changeset patch # User Mychaela Falconia # Date 1693194773 0 # Node ID b515a97e5dff252b24c41fecc139f8db19f6a637 # Parent e3706ce1d01c3bb29a550a206bc06df01ec34996 sms-pdu-decode family: fix VP-Relative header spacing When VP-Relative is small enough to be reckoned in 5 min or 30 min units, it was printed incorrectly, with a cosmetic defect of one extra space. Fix this bug. diff -r e3706ce1d01c -r b515a97e5dff uptools/sms-pdu-decode/pdu-common.c --- a/uptools/sms-pdu-decode/pdu-common.c Sat Aug 05 00:01:42 2023 +0000 +++ b/uptools/sms-pdu-decode/pdu-common.c Mon Aug 28 03:52:53 2023 +0000 @@ -201,7 +201,7 @@ hhmm: hours = min / 60; min %= 60; - printf("VP-Relative: "); + printf("VP-Relative:"); if (hours) printf(" %u hour%s", hours, hours != 1 ? "s" : ""); if (min)