summaryrefslogtreecommitdiff
path: root/src/base64.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/base64.cpp')
-rw-r--r--src/base64.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/base64.cpp b/src/base64.cpp
index e2df07de..6d503a53 100644
--- a/src/base64.cpp
+++ b/src/base64.cpp
@@ -105,7 +105,7 @@ unsigned char *php_base64_decode(const unsigned char *str, int length, int *ret_
headache. - Turadg Aleahmad <turadg@wise.berkeley.edu>
*/
- if (ch == ' ') ch = '+';
+ if (ch == ' ') ch = '+';
ch = reverse_table[ch];
if (ch < 0) continue;