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

github.com/drtimcooper/XmlRpc4Win.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUnderground78 <underground78@users.sourceforge.net>2016-01-14 01:04:26 +0300
committerUnderground78 <underground78@users.sourceforge.net>2016-01-18 00:14:01 +0300
commit57a83b148f5d64b5f6950203b0b5e847b61dbc58 (patch)
treec16c6186d74de95e7b9ece398097c5520aaba5de
parent946885b210a1052cd787090796d8067b6df65e6a (diff)
Silence a C4244 warning (conversion from int to char).
-rw-r--r--TimXmlRpc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/TimXmlRpc.cpp b/TimXmlRpc.cpp
index 20f2317..3eb5c10 100644
--- a/TimXmlRpc.cpp
+++ b/TimXmlRpc.cpp
@@ -647,7 +647,7 @@ static char* xmlDecode(const char* s, const char* end)
*d++ = '>', s += 4;
else if (strbegins(s, "&#", true)) {
s += 2;
- *d++ = atoi(s);
+ *d++ = (char)atoi(s);
while (*s >= '0' && *s <= '9')
s++;
if (*s == ';')