summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2016-03-03 22:29:43 +0100
committerMichael Stahl <mstahl@redhat.com>2016-03-03 22:29:43 +0100
commitbba00901f55bfd4fa476667baaf2b2e7e1f58762 (patch)
tree7776bf99ba07ce97af37a72f45f13526d15249cb
parenta6e7673aec0321ceb328de902d5ee0689df3abf7 (diff)
vcl: fix the MSVC build
Change-Id: I3607e90eb819a2afc4bc58072cdac74fb559bacb
-rw-r--r--vcl/qa/cppunit/blocklistparsertest.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/qa/cppunit/blocklistparsertest.cxx b/vcl/qa/cppunit/blocklistparsertest.cxx
index 66a4f7051651..d5357e799036 100644
--- a/vcl/qa/cppunit/blocklistparsertest.cxx
+++ b/vcl/qa/cppunit/blocklistparsertest.cxx
@@ -39,7 +39,7 @@ void BlocklistParserTest::testParse()
WinBlocklistParser aBlocklistParser(getURLFromSrc("vcl/qa/cppunit/") + "test_blocklist_parse.xml", aDriveInfos);
aBlocklistParser.parse();
- CPPUNIT_ASSERT_EQUAL(20U, aDriveInfos.size());
+ CPPUNIT_ASSERT_EQUAL(static_cast<size_t>(20), aDriveInfos.size());
size_t i = 0;