Skip to content

Commit 16a6c10

Browse files
committed
[lldb] Fix warning: comparison of integers of different signs
1 parent f33b5b7 commit 16a6c10

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lldb/unittests/ScriptInterpreter/Lua/ScriptInterpreterTests.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,6 @@ TEST_F(ScriptInterpreterTest, ExecuteOneLine) {
4949
EXPECT_TRUE(script_interpreter.ExecuteOneLine("foo = 1", &result));
5050
EXPECT_FALSE(script_interpreter.ExecuteOneLine("nil = foo", &result));
5151
EXPECT_EQ(result.GetErrorString().find(
52-
"error: lua failed attempting to evaluate 'nil = foo'"), 0 );
52+
"error: lua failed attempting to evaluate 'nil = foo'"),
53+
0U);
5354
}

0 commit comments

Comments
 (0)