diff options
-rw-r--r-- | lldb/unittests/Host/ProcessInfoTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/unittests/Host/ProcessInfoTest.cpp b/lldb/unittests/Host/ProcessInfoTest.cpp index ad6341aebf4..93dffe38090 100644 --- a/lldb/unittests/Host/ProcessInfoTest.cpp +++ b/lldb/unittests/Host/ProcessInfoTest.cpp @@ -16,5 +16,5 @@ TEST(ProcessInfoTest, Constructor) { ProcessInfo Info("foo", ArchSpec("x86_64-pc-linux"), 47); EXPECT_STREQ("foo", Info.GetName()); EXPECT_EQ(ArchSpec("x86_64-pc-linux"), Info.GetArchitecture()); - EXPECT_EQ(47, Info.GetProcessID()); + EXPECT_EQ(47u, Info.GetProcessID()); } |