From 95c302566ab1c933b88cb46b9816f0c498ac1d43 Mon Sep 17 00:00:00 2001 From: wb2osz Date: Thu, 1 Feb 2018 19:48:08 -0500 Subject: [PATCH] Time stamps in wrong place. --- xmit.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xmit.c b/xmit.c index 0f09c45..4246d86 100644 --- a/xmit.c +++ b/xmit.c @@ -1049,7 +1049,7 @@ static void xmit_speech (int c, packet_t pp) (void)info_len; text_color_set(DW_COLOR_XMIT); - dw_printf ("[%d.speech%s] \"%s\"\n", c, pinfo, ts); + dw_printf ("[%d.speech%s] \"%s\"\n", c, ts, pinfo); if (strlen(save_audio_config_p->tts_script) == 0) { @@ -1175,7 +1175,7 @@ static void xmit_morse (int c, packet_t pp, int wpm) info_len = ax25_get_info (pp, &pinfo); (void)info_len; text_color_set(DW_COLOR_XMIT); - dw_printf ("[%d.morse%s] \"%s\"\n", c, pinfo, ts); + dw_printf ("[%d.morse%s] \"%s\"\n", c, ts, pinfo); ptt_set (OCTYPE_PTT, c, 1); start_ptt = dtime_now(); @@ -1247,7 +1247,7 @@ static void xmit_dtmf (int c, packet_t pp, int speed) info_len = ax25_get_info (pp, &pinfo); (void)info_len; text_color_set(DW_COLOR_XMIT); - dw_printf ("[%d.dtmf%s] \"%s\"\n", c, pinfo, ts); + dw_printf ("[%d.dtmf%s] \"%s\"\n", c, ts, pinfo); ptt_set (OCTYPE_PTT, c, 1); start_ptt = dtime_now();