@@ -4529,10 +4529,10 @@ static void process_comment (decode_aprs_t *A, char *pstart, int clen)
4529
4529
(x >= 902 && x <= 928 )) {
4530
4530
4531
4531
if ( ! A -> g_quiet ) {
4532
- snprintf (good , sizeof (good ), "%07.3fMHz" , x );
4532
+ // snprintf (good, sizeof(good), "%07.3fMHz", x);
4533
4533
text_color_set (DW_COLOR_ERROR );
4534
- dw_printf ("\"%s\" in comment looks like a frequency in non-standard format.\n" , bad );
4535
- dw_printf ("For most systems to recognize it, use exactly this form \"%s\" at beginning of comment.\n" , good );
4534
+ // dw_printf("\"%s\" in comment looks like a frequency in non-standard format.\n", bad);
4535
+ // dw_printf("For most systems to recognize it, use exactly this form \"%s\" at beginning of comment.\n", good);
4536
4536
}
4537
4537
if (A -> g_freq == G_UNKNOWN ) {
4538
4538
A -> g_freq = x ;
@@ -4571,10 +4571,10 @@ static void process_comment (decode_aprs_t *A, char *pstart, int clen)
4571
4571
if (strcmp (s_ctcss [i ], bad2 ) == 0 ) {
4572
4572
4573
4573
if ( ! A -> g_quiet ) {
4574
- snprintf (good , sizeof (good ), "T%03d" , i_ctcss [i ]);
4574
+ // snprintf (good, sizeof(good), "T%03d", i_ctcss[i]);
4575
4575
text_color_set (DW_COLOR_ERROR );
4576
- dw_printf ("\"%s\" in comment looks like it might be a CTCSS tone in non-standard format.\n" , bad1 );
4577
- dw_printf ("For most systems to recognize it, use exactly this form \"%s\" at near beginning of comment, after any frequency.\n" , good );
4576
+ // dw_printf("\"%s\" in comment looks like it might be a CTCSS tone in non-standard format.\n", bad1);
4577
+ // dw_printf("For most systems to recognize it, use exactly this form \"%s\" at near beginning of comment, after any frequency.\n", good);
4578
4578
}
4579
4579
if (A -> g_tone == G_UNKNOWN ) {
4580
4580
A -> g_tone = atof (bad2 );
0 commit comments