diff options
Diffstat (limited to 'wx+/http.cpp')
-rw-r--r-- | wx+/http.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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<unsigned char>(c) / 16]; out += hexDigits[static_cast<unsigned char>(c) % 16]; |