diff options
Diffstat (limited to 'common/subprocess_unittest.cc')
-rw-r--r-- | common/subprocess_unittest.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/subprocess_unittest.cc b/common/subprocess_unittest.cc index b37dc91c..467fca80 100644 --- a/common/subprocess_unittest.cc +++ b/common/subprocess_unittest.cc @@ -179,7 +179,7 @@ void StartAndCancelInRunLoop(bool* spawned) { cmd.push_back("./test_http_server"); cmd.push_back(temp_file_name); uint32_t tag = Subprocess::Get().Exec(cmd, base::Bind(&CallbackBad)); - EXPECT_NE(0, tag); + EXPECT_NE(0U, tag); *spawned = true; printf("test http server spawned\n"); // Wait for server to be up and running |