From 2fbc33967abe8fd301a1c0ce35a625ed98bf41f9 Mon Sep 17 00:00:00 2001 From: "rafaelw@chromium.org" Date: Wed, 26 May 2010 01:52:40 +0000 Subject: Revert "Another dependency the bbot missed!!!" This reverts commit 161f7fd3bdd425167af9fe26fdc5373a2ff44c98. Revert "Missed a file as part of checkin for r48186" This reverts commit cff86beba5938209393a6c3bccced62a7f3ff36b. Revert "Enable warning 4389 as an error on windows builds. This will make" This reverts commit c78936bcfc65b98edf288191d927a495b0364621. TBR=mbelshe Review URL: http://codereview.chromium.org/2253001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48238 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome_frame/test/exception_barrier_unittest.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'chrome_frame/test/exception_barrier_unittest.cc') diff --git a/chrome_frame/test/exception_barrier_unittest.cc b/chrome_frame/test/exception_barrier_unittest.cc index 73f006a..eeffd2a 100644 --- a/chrome_frame/test/exception_barrier_unittest.cc +++ b/chrome_frame/test/exception_barrier_unittest.cc @@ -29,7 +29,7 @@ void TestSEHChainSane() { MEMORY_BASIC_INFORMATION info = { 0 }; // Note that we pass the address of the info struct just as a handy // moniker to anything at all inside our stack allocation - ASSERT_NE(0u, ::VirtualQuery(&info, &info, sizeof(info))); + ASSERT_NE(0, ::VirtualQuery(&info, &info, sizeof(info))); // The lower bound of our stack. // We use the address of info as a lower bound, this assumes that if this @@ -60,9 +60,9 @@ void TestSEHChainSane() { ASSERT_EQ(0, (reinterpret_cast(prev) & 0x00000003)); // find the module hosting the handler - ASSERT_NE(0u, ::VirtualQuery(curr->handler, &info, sizeof(info))); + ASSERT_NE(0, ::VirtualQuery(curr->handler, &info, sizeof(info))); wchar_t module_filename[MAX_PATH]; - ASSERT_NE(0u, ::GetModuleFileName( + ASSERT_NE(0, ::GetModuleFileName( reinterpret_cast(info.AllocationBase), module_filename, ARRAYSIZE(module_filename))); } -- cgit v1.1