From c937b0ee01594d1e285a96a65c2f3a05eb2658dc Mon Sep 17 00:00:00 2001 From: "ivan.penkov@gmail.com" Date: Wed, 21 Nov 2012 01:33:08 +0000 Subject: Cleaning up google-breakpad source code of signed-unsigned comparison warnings http://breakpad.appspot.com/488002/ git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1083 4c0a9323-5329-0410-9bdc-e9ce6186880e --- src/common/linux/memory_mapped_file_unittest.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/common/linux/memory_mapped_file_unittest.cc') diff --git a/src/common/linux/memory_mapped_file_unittest.cc b/src/common/linux/memory_mapped_file_unittest.cc index 0c551ac2..7c34e708 100644 --- a/src/common/linux/memory_mapped_file_unittest.cc +++ b/src/common/linux/memory_mapped_file_unittest.cc @@ -54,7 +54,7 @@ class MemoryMappedFileTest : public testing::Test { void ExpectNoMappedData(const MemoryMappedFile& mapped_file) { EXPECT_TRUE(mapped_file.content().IsEmpty()); EXPECT_TRUE(mapped_file.data() == NULL); - EXPECT_EQ(0, mapped_file.size()); + EXPECT_EQ(0U, mapped_file.size()); } }; -- cgit v1.2.1