File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
source/Plugins/Language/ObjC
test/API/functionalities/data-formatter/data-formatter-objc Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ bool lldb_private::formatters::NSError_SummaryProvider(
6767
6868 Status error;
6969 int64_t code = process_sp->ReadSignedIntegerFromMemory (code_location,
70- ptr_size, 0 , error);
70+ ptr_size, 0 , error);
7171 if (error.Fail ())
7272 return false ;
7373
Original file line number Diff line number Diff line change @@ -23,7 +23,9 @@ def test_nserror_with_run_command_no_const(self):
2323 self .appkit_tester_impl (self .nserror_data_formatter_commands , False )
2424
2525 def nserror_data_formatter_commands (self ):
26- self .expect ("frame variable nserror" , substrs = ['domain: @"Foobar" - code: -1234' ])
26+ self .expect (
27+ "frame variable nserror" , substrs = ['domain: @"Foobar" - code: -1234' ]
28+ )
2729
2830 self .expect (
2931 "frame variable nserrorptr" , substrs = ['domain: @"Foobar" - code: -1234' ]
You can’t perform that action at this time.
0 commit comments