From f2f29f22876d255eab26c6b82ca8e2b6566e3a9d Mon Sep 17 00:00:00 2001 From: lwvmobile Date: Thu, 9 Mar 2023 18:40:36 -0500 Subject: [PATCH] Line Space OCD; --- src/p25p2_vpdu.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/p25p2_vpdu.c b/src/p25p2_vpdu.c index 0b88b02..15eefbf 100644 --- a/src/p25p2_vpdu.c +++ b/src/p25p2_vpdu.c @@ -1375,7 +1375,7 @@ void process_MAC_VPDU(dsd_opts * opts, dsd_state * state, int type, unsigned lon fprintf (stderr, " Priority %d", svc & 0x7); //call priority } - fprintf (stderr, "Group Voice"); + fprintf (stderr, " Group Voice"); sprintf (state->call_string[slot], " Group "); if (svc & 0x80) strcat (state->call_string[slot], " Emergency "); @@ -1414,7 +1414,7 @@ void process_MAC_VPDU(dsd_opts * opts, dsd_state * state, int type, unsigned lon fprintf (stderr, " Priority %d", svc & 0x7); //call priority } - fprintf (stderr, "Unit to Unit Voice"); + fprintf (stderr, " Unit to Unit Voice"); sprintf (state->call_string[slot], " Private "); if (svc & 0x80) strcat (state->call_string[slot], " Emergency ");