Skip to content

Commit 95c3025

Browse files
committed
Time stamps in wrong place.
1 parent db4c07a commit 95c3025

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

xmit.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -1049,7 +1049,7 @@ static void xmit_speech (int c, packet_t pp)
10491049
(void)info_len;
10501050

10511051
text_color_set(DW_COLOR_XMIT);
1052-
dw_printf ("[%d.speech%s] \"%s\"\n", c, pinfo, ts);
1052+
dw_printf ("[%d.speech%s] \"%s\"\n", c, ts, pinfo);
10531053

10541054

10551055
if (strlen(save_audio_config_p->tts_script) == 0) {
@@ -1175,7 +1175,7 @@ static void xmit_morse (int c, packet_t pp, int wpm)
11751175
info_len = ax25_get_info (pp, &pinfo);
11761176
(void)info_len;
11771177
text_color_set(DW_COLOR_XMIT);
1178-
dw_printf ("[%d.morse%s] \"%s\"\n", c, pinfo, ts);
1178+
dw_printf ("[%d.morse%s] \"%s\"\n", c, ts, pinfo);
11791179

11801180
ptt_set (OCTYPE_PTT, c, 1);
11811181
start_ptt = dtime_now();
@@ -1247,7 +1247,7 @@ static void xmit_dtmf (int c, packet_t pp, int speed)
12471247
info_len = ax25_get_info (pp, &pinfo);
12481248
(void)info_len;
12491249
text_color_set(DW_COLOR_XMIT);
1250-
dw_printf ("[%d.dtmf%s] \"%s\"\n", c, pinfo, ts);
1250+
dw_printf ("[%d.dtmf%s] \"%s\"\n", c, ts, pinfo);
12511251

12521252
ptt_set (OCTYPE_PTT, c, 1);
12531253
start_ptt = dtime_now();

0 commit comments

Comments
 (0)