Fix a typo in my previous commit. This would cause mutable NSArrays to show up empty

llvm-svn: 262260
This commit is contained in:
Enrico Granata
2016-02-29 21:41:19 +00:00
parent 7a67ee263f
commit fe09d5e73a

View File

@@ -788,7 +788,7 @@ SyntheticChildrenFrontEnd* lldb_private::formatters::NSArraySyntheticFrontEndCre
{
return (new NSArrayISyntheticFrontEnd(valobj_sp));
}
else if (class_name == g_NSArrayM)
else if (class_name == g_NSArray0)
{
return (new NSArray0SyntheticFrontEnd(valobj_sp));
}