summaryrefslogtreecommitdiff
path: root/utils/MsgVMessage.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'utils/MsgVMessage.cpp')
-rwxr-xr-xutils/MsgVMessage.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/MsgVMessage.cpp b/utils/MsgVMessage.cpp
index f74c982..b5d210d 100755
--- a/utils/MsgVMessage.cpp
+++ b/utils/MsgVMessage.cpp
@@ -254,7 +254,7 @@ static int __msgsvc_vmsg_append_str(char **buf, int *buf_size, int len, const ch
char *r = (char *)(*buf+len);
while (*s) {
- switch (*s) {
+ switch ((unsigned int)*s) {
case '\r':
if (*(s+1) && '\n' == *(s+1)) {
s++;
@@ -1684,7 +1684,7 @@ static char* __msgsvc_vmsg_remove_escape_char(char *str)
while (*s) {
if (*s == '\\' && *(s+1)) {
char *n = (char*)(s+1);
- switch (*n) {
+ switch ((unsigned int)*n) {
case 'n':
case 'N':
*r = '\n';