Skip to content

Commit 997594a

Browse files
committed
Fix nit
1 parent 492a8b5 commit 997594a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lldb/source/Plugins/InstrumentationRuntime/BoundsSafety/InstrumentationRuntimeBoundsSafety.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,7 @@ InstrumentationBoundsSafetyStopInfo::InstrumentationBoundsSafetyStopInfo(
123123
// Helper functions to make it convenient to log a failure and then return.
124124
template <typename T, typename... ArgTys>
125125
[[nodiscard]] T LogBeforeReturn(ArgTys &&...Args) {
126-
Log *log_category = GetLog(LLDBLog::InstrumentationRuntime);
127-
LLDB_LOG(log_category, Args...);
126+
LLDB_LOG(GetLog(LLDBLog::InstrumentationRuntime), Args...);
128127
return T();
129128
}
130129

0 commit comments

Comments
 (0)