Microfix CURLException message.
continuous-integration/drone/push Build is passing Details

This commit is contained in:
tastytea 2020-01-05 11:17:14 +01:00
parent 61a26dbb67
commit 4aa24900ef
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
1 changed files with 1 additions and 1 deletions

View File

@ -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();
}