From a4a704fd37b91d388e0b50d5ab1d27ad094f5f1e Mon Sep 17 00:00:00 2001 From: Tomas Babej Date: Sat, 18 Feb 2017 20:20:37 +0100 Subject: [PATCH] style: Remove doubled spaces in the error message --- src/TLSClient.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/TLSClient.cpp b/src/TLSClient.cpp index b82407d21..822bdafeb 100644 --- a/src/TLSClient.cpp +++ b/src/TLSClient.cpp @@ -296,10 +296,10 @@ void TLSClient::connect (const std::string& host, const std::string& port) std::string error {(const char*) out.data}; gnutls_free (out.data); // All - throw format ("Handshake failed. {1}", error); // All + throw format ("Handshake failed. {1}", error); // All } #else - throw format ("Handshake failed. {1}", gnutls_strerror (ret)); // All + throw format ("Handshake failed. {1}", gnutls_strerror (ret)); // All #endif }