From 1019d851aaeee3559b6e02491ddf073b14cafb99 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Fri, 1 Dec 2017 13:15:43 +0000 Subject: [PATCH] Correct an invalid variable name. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@8274 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- logqso.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/logqso.cpp b/logqso.cpp index 9118a2f63..1028c40fd 100644 --- a/logqso.cpp +++ b/logqso.cpp @@ -130,7 +130,7 @@ void LogQSO::accept() auto rzult = _sock.writeDatagram ( qba_adif, n1mmhost, quint16(m_config->n1mm_server_port())); if (rzult == -1) { MessageBox::warning_message (this, tr ("Error sending log to N1MM"), - tr ("Write returned \"%1\"").arg (errno)); + tr ("Write returned \"%1\"").arg (rzult)); } }