Skip to content

Commit c29ca84

Browse files
authored
[lldb] Use decimal for Swift Task ID (#10308)
See also swiftlang/swift#80154
1 parent be33180 commit c29ca84

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/source/Plugins/OperatingSystem/SwiftTasks/OperatingSystemSwiftTasks.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ OperatingSystemSwiftTasks::FindOrCreateSwiftThread(ThreadList &old_thread_list,
9292
IsOperatingSystemPluginThread(old_thread))
9393
return old_thread;
9494

95-
std::string name = llvm::formatv("Swift Task {0:x}", task_id);
95+
std::string name = llvm::formatv("Swift Task {0}", task_id);
9696
llvm::StringRef queue_name = "";
9797
return std::make_shared<ThreadMemory>(*m_process, masked_task_id, name,
9898
queue_name,

0 commit comments

Comments
 (0)