Skip to content

Commit 0b1b6c5

Browse files
committed
Bow
1 parent b41b19c commit 0b1b6c5

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

lldb/source/Plugins/Language/ObjC/NSError.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

lldb/test/API/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCNSError.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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']

0 commit comments

Comments
 (0)