summaryrefslogtreecommitdiff
path: root/tools/qa/cppunit/test_pathutils.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'tools/qa/cppunit/test_pathutils.cxx')
-rw-r--r--tools/qa/cppunit/test_pathutils.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/qa/cppunit/test_pathutils.cxx b/tools/qa/cppunit/test_pathutils.cxx
index 1b0c57c08afd..c0a1ea5078d0 100644
--- a/tools/qa/cppunit/test_pathutils.cxx
+++ b/tools/qa/cppunit/test_pathutils.cxx
@@ -33,7 +33,7 @@ void buildPath(
wchar_t p[MAX_PATH];
wchar_t * e = tools::buildPath(
p, front, front + std::wcslen(front), back, std::wcslen(back));
- CPPUNIT_ASSERT_EQUAL(p + std::wcslen(path), e);
+ CPPUNIT_ASSERT_EQUAL(static_cast<void *>(p + std::wcslen(path)), static_cast<void *>(e));
CPPUNIT_ASSERT_EQUAL(0, std::wcscmp(path, p));
#else
(void) front;