From 8750db35e8d2792b6d2063ccfc439c2854edd593 Mon Sep 17 00:00:00 2001 From: Pierre Ossman Date: Tue, 29 May 2018 15:49:26 +0200 Subject: [PATCH] Fix bad reference in TLSException initialiser --- common/rdr/TLSException.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ -- 2.39.5