diff options
Diffstat (limited to 'lldb/source/Core/Debugger.cpp')
-rw-r--r-- | lldb/source/Core/Debugger.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Core/Debugger.cpp b/lldb/source/Core/Debugger.cpp index b7be1715ca9..7ab7a7728d7 100644 --- a/lldb/source/Core/Debugger.cpp +++ b/lldb/source/Core/Debugger.cpp @@ -1339,9 +1339,9 @@ Debugger::DeleteFormatForType (const ConstString &type) } void -Debugger::LoopThroughFormatList (FormatCallback cback, void* param) +Debugger::LoopThroughFormatList (FormatManager::Callback callback, void* callback_baton) { - return GetFormatManager().LoopThroughFormatList(cback, param); + return GetFormatManager().LoopThroughFormatList(callback, callback_baton); } #pragma mark Debugger::SettingsController |