Fix a -Wsign-compare error under GCC 4.9.2.
authorpaul.lind <paul.lind@imgtec.com>
Thu, 23 Jul 2015 06:27:04 +0000 (23:27 -0700)
committerCommit bot <commit-bot@chromium.org>
Thu, 23 Jul 2015 06:27:15 +0000 (06:27 +0000)
BUG=

Review URL: https://codereview.chromium.org/1249703005

Cr-Commit-Position: refs/heads/master@{#29795}

test/cctest/test-api.cc

index 44d29d1..df32722 100644 (file)
@@ -21029,7 +21029,7 @@ TEST(StreamingWithDebuggingEnabledLate) {
 
   Maybe<uint32_t> result =
       script->Run(env.local()).ToLocalChecked()->Uint32Value(env.local());
-  CHECK_EQ(3, result.FromMaybe(0));
+  CHECK_EQ(3U, result.FromMaybe(0));
 
   delete[] full_source;