summaryrefslogtreecommitdiffstats
path: root/juniper/src/test/auxTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'juniper/src/test/auxTest.cpp')
-rw-r--r--juniper/src/test/auxTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/juniper/src/test/auxTest.cpp b/juniper/src/test/auxTest.cpp
index 74b3469f2c0..2557fbf890d 100644
--- a/juniper/src/test/auxTest.cpp
+++ b/juniper/src/test/auxTest.cpp
@@ -302,7 +302,7 @@ void test_dump(const char* s, unsigned int len)
unsigned int start = i;
for (; i < len;)
{
- if (s[i] < 0) {
+ if ((signed char) s[i] < 0) {
printf("�");
} else {
printf("%c", s[i]);