From be08c6c09a3026da628daf2425516beda1557bb3 Mon Sep 17 00:00:00 2001 From: Daniel Wilhelm Date: Tue, 31 May 2016 16:38:45 +0200 Subject: 8.2 --- wx+/http.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'wx+/http.cpp') diff --git a/wx+/http.cpp b/wx+/http.cpp index f73587b3..16dc4776 100644 --- a/wx+/http.cpp +++ b/wx+/http.cpp @@ -211,7 +211,7 @@ std::string urlencode(const std::string& str) out += c; else { - const char hexDigits[]= "0123456789ABCDEF"; + const char hexDigits[] = "0123456789ABCDEF"; out += '%'; out += hexDigits[static_cast(c) / 16]; out += hexDigits[static_cast(c) % 16]; -- cgit