Index: test/cctest/test-platform.cc |
diff --git a/test/cctest/test-platform.cc b/test/cctest/test-platform.cc |
index a786d368e1fa731805ab8482f7afbc4277d56593..2576af81a556a0dbd6dab1167709146555240f08 100644 |
--- a/test/cctest/test-platform.cc |
+++ b/test/cctest/test-platform.cc |
@@ -56,7 +56,8 @@ TEST(StackAlignment) { |
v8::Local<v8::Function>::Cast(global_object->Get(v8_str("foo"))); |
v8::Local<v8::Value> result = foo->Call(global_object, 0, NULL); |
- CHECK_EQ(0, result->Uint32Value() % v8::base::OS::ActivationFrameAlignment()); |
+ CHECK_EQ(0u, |
+ result->Uint32Value() % v8::base::OS::ActivationFrameAlignment()); |
} |
#endif // V8_CC_GNU |