Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@users.sourceforge.net>2012-09-30 19:25:59 +0400
committerXhmikosR <xhmikosr@users.sourceforge.net>2012-09-30 21:44:24 +0400
commit187f82a8559e1ea54ec4b8ff1a58f759ac89afa7 (patch)
tree56503338f34f6d7890a38bbeed3a5d716d5ee03f /src/DSUtil/text.cpp
parent33cdb0f42441fc52ef7c4b7018407ddcc49f588e (diff)
run astyle
Diffstat (limited to 'src/DSUtil/text.cpp')
-rw-r--r--src/DSUtil/text.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/DSUtil/text.cpp b/src/DSUtil/text.cpp
index 655ad7c59..a30216f24 100644
--- a/src/DSUtil/text.cpp
+++ b/src/DSUtil/text.cpp
@@ -94,7 +94,7 @@ CStringA UrlDecode(CStringA str_in)
for (int i = 0, len = str_in.GetLength(); i < len; i++) {
if (str_in[i] == '%' && i + 2 < len) {
bool b = true;
- char c1 = str_in[i+1];
+ char c1 = str_in[i + 1];
if (c1 >= '0' && c1 <= '9') {
c1 -= '0';
} else if (c1 >= 'A' && c1 <= 'F') {
@@ -105,7 +105,7 @@ CStringA UrlDecode(CStringA str_in)
b = false;
}
if (b) {
- char c2 = str_in[i+2];
+ char c2 = str_in[i + 2];
if (c2 >= '0' && c2 <= '9') {
c2 -= '0';
} else if (c2 >= 'A' && c2 <= 'F') {