From de9b8151c5652e7340e5c92d026e4ddb51e08e73 Mon Sep 17 00:00:00 2001 From: Tom Early Date: Fri, 1 Feb 2019 07:52:01 -0700 Subject: [PATCH] fixed log_quo error --- QnetITAP.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/QnetITAP.cpp b/QnetITAP.cpp index 4db6bd6..04ed163 100644 --- a/QnetITAP.cpp +++ b/QnetITAP.cpp @@ -371,7 +371,7 @@ bool CQnetITAP::ProcessGateway(const int len, const unsigned char *raw) memcpy(itap.header.my, dstr.vpkt.hdr.my, 8); memcpy(itap.header.nm, dstr.vpkt.hdr.nm, 4); if (log_qso) - printf("Queued ITAP to %s ur=%.8s r1=%.8s r2=%.8s my=%.8s/%.4s\n", ITAP_DEVICE.c_str(), itap.header.ur, itap.header.r2, itap.header.r1, itap.header.my, itap.header.nm); + printf("Queued ITAP to %s ur=%.8s r1=%.8s r2=%.8s my=%.8s/%.4s\n", ITAP_DEVICE.c_str(), itap.header.ur, itap.header.r1, itap.header.r2, itap.header.my, itap.header.nm); } else { // write an AMBE packet itap.length = 16U; itap.type = 0x22U;