From 871e171ec47e425f2ff5ff3cc3bcf8e9b157f1b0 Mon Sep 17 00:00:00 2001 From: Tom Early Date: Mon, 8 Apr 2019 08:22:27 -0700 Subject: [PATCH] fixed get_urcall log --- QnetGateway.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/QnetGateway.cpp b/QnetGateway.cpp index 9d5d514..883125a 100644 --- a/QnetGateway.cpp +++ b/QnetGateway.cpp @@ -572,7 +572,7 @@ bool CQnetGateway::get_yrcall_rptr(const std::string &call, std::string &arearp_ int rc = get_yrcall_rptr_from_cache(call, arearp_cs, zonerp_cs, mod, ip, RoU); pthread_mutex_unlock(&irc_data_mutex); if (rc == 0) { - printf("get_yrcall_rptr_from_cache: call='%s' arearp_cs='%s' zonerp_cs='%s', mod=%c ip='%s' RoU=%c", call.c_str(), arearp_cs.c_str(), zonerp_cs.c_str(), *mod, ip.c_str(), RoU); + printf("get_yrcall_rptr_from_cache: call='%s' arearp_cs='%s' zonerp_cs='%s', mod=%c ip='%s' RoU=%c\n", call.c_str(), arearp_cs.c_str(), zonerp_cs.c_str(), *mod, ip.c_str(), RoU); return true; } else if (rc == 2) return false;