From 4aa24900ef71e97cb8945268409b7d015c3c8848 Mon Sep 17 00:00:00 2001 From: tastytea Date: Sun, 5 Jan 2020 11:17:14 +0100 Subject: [PATCH] Microfix CURLException message. --- src/exceptions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/exceptions.cpp b/src/exceptions.cpp index 381b6d8..7c3da1a 100644 --- a/src/exceptions.cpp +++ b/src/exceptions.cpp @@ -42,7 +42,7 @@ const char *CURLException::what() const noexcept + " - " + _message}; if (!_error_buffer.empty()) { - error_string.append("[" + _error_buffer + "]"); + error_string.append(" [" + _error_buffer + "]"); } return error_string.c_str(); }