From: Pierre Ossman Date: Tue, 29 May 2018 13:49:26 +0000 (+0200) Subject: Fix bad reference in TLSException initialiser X-Git-Tag: v1.8.90~12 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=8750db35e8d2792b6d2063ccfc439c2854edd593;p=tigervnc.git Fix bad reference in TLSException initialiser --- diff --git a/common/rdr/TLSException.cxx b/common/rdr/TLSException.cxx index bf8e97a2..0f75a4da 100644 --- a/common/rdr/TLSException.cxx +++ b/common/rdr/TLSException.cxx @@ -34,7 +34,7 @@ using namespace rdr; #ifdef HAVE_GNUTLS TLSException::TLSException(const char* s, int err_) - : Exception("%s: %s (%d)", s, gnutls_strerror(err), err), err(err_) + : Exception("%s: %s (%d)", s, gnutls_strerror(err_), err_), err(err_) { } #endif /* HAVE_GNUTLS */