diff options
| author | magumagu <magumagu9@gmail.com> | 2015-03-16 17:41:46 -0700 |
|---|---|---|
| committer | magumagu <magumagu9@gmail.com> | 2015-03-16 17:41:46 -0700 |
| commit | 629fb8fb495c75454cf280bed7f536fbe4eaa6db (patch) | |
| tree | b9c1e0517c94dfd98bc99a7004d4e5b2970e4479 /Source/UnitTests/Core/MMIOTest.cpp | |
| parent | b103aa71222156822123a6b10a2af3801e98afc7 (diff) | |
| parent | f82afd1b2f4f13aecec6c7a36542121167cda357 (diff) | |
Merge pull request #2222 from Tilka/fix_warnings
Fix warnings
Diffstat (limited to 'Source/UnitTests/Core/MMIOTest.cpp')
| -rw-r--r-- | Source/UnitTests/Core/MMIOTest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/UnitTests/Core/MMIOTest.cpp b/Source/UnitTests/Core/MMIOTest.cpp index 7285157c34..9da0dee684 100644 --- a/Source/UnitTests/Core/MMIOTest.cpp +++ b/Source/UnitTests/Core/MMIOTest.cpp @@ -108,12 +108,12 @@ TEST_F(MappingTest, ReadWriteComplex) m_mapping->Register(0x0C001234, MMIO::ComplexRead<u8>([&read_called](u32 addr) { - EXPECT_EQ(0x0C001234, addr); + EXPECT_EQ(0x0C001234u, addr); read_called = true; return 0x12; }), MMIO::ComplexWrite<u8>([&write_called](u32 addr, u8 val) { - EXPECT_EQ(0x0C001234, addr); + EXPECT_EQ(0x0C001234u, addr); EXPECT_EQ(0x34, val); write_called = true; }) |
