summaryrefslogtreecommitdiff
path: root/wx+/http.cpp
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2016-05-31 16:38:45 +0200
committerDaniel Wilhelm <daniel@wili.li>2016-05-31 16:38:45 +0200
commitbe08c6c09a3026da628daf2425516beda1557bb3 (patch)
tree062cc2f6a1e5ba5a2fdcb53549cc09c4ff5d062a /wx+/http.cpp
parent8.1 (diff)
downloadFreeFileSync-be08c6c09a3026da628daf2425516beda1557bb3.tar.gz
FreeFileSync-be08c6c09a3026da628daf2425516beda1557bb3.tar.bz2
FreeFileSync-be08c6c09a3026da628daf2425516beda1557bb3.zip
8.2
Diffstat (limited to 'wx+/http.cpp')
-rw-r--r--wx+/http.cpp2
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];
bgstack15