aboutsummaryrefslogtreecommitdiffstats
path: root/libtests/qutil.cc
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2013-02-24 03:46:21 +0100
committerJay Berkenbilt <ejb@ql.org>2013-03-04 22:45:16 +0100
commit30027481f7f9e9191f7c8deea51850b7a76b1b1f (patch)
tree815af293c2f6e38994e6096a4499be0dc9a476f9 /libtests/qutil.cc
parentbabb47948a408ebad12c452ba3fdd78782360167 (diff)
downloadqpdf-30027481f7f9e9191f7c8deea51850b7a76b1b1f.tar.zst
Remove all old-style casts from C++ code
Diffstat (limited to 'libtests/qutil.cc')
-rw-r--r--libtests/qutil.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libtests/qutil.cc b/libtests/qutil.cc
index d1c090fb..ad77f3ea 100644
--- a/libtests/qutil.cc
+++ b/libtests/qutil.cc
@@ -152,7 +152,7 @@ static void print_utf8(unsigned long val)
iter != result.end(); ++iter)
{
char t[3];
- sprintf(t, "%02x", (unsigned char) (*iter));
+ sprintf(t, "%02x", static_cast<unsigned char>(*iter));
std::cout << " " << t;
}
}