aboutsummaryrefslogtreecommitdiffstats
path: root/libtests/qutil.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libtests/qutil.cc')
-rw-r--r--libtests/qutil.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/libtests/qutil.cc b/libtests/qutil.cc
index e6fc4661..2142346e 100644
--- a/libtests/qutil.cc
+++ b/libtests/qutil.cc
@@ -418,10 +418,10 @@ void transcoding_test()
print_alternatives(utf8);
print_alternatives("quack");
std::cout << "done alternatives" << std::endl;
- std::string low = QUtil::pdf_doc_to_utf8(
- "w\030w\031w\032w\033w\034w\035w\036w\037w\177w");
- std::cout << low << std::endl;
- std::cout << "done low characters" << std::endl;
+ std::string other = QUtil::pdf_doc_to_utf8(
+ "w\030w\031w\032w\033w\034w\035w\036w\037w\177w\255w");
+ std::cout << other << std::endl;
+ std::cout << "done other characters" << std::endl;
}
void print_whoami(char const* str)