[Lldb-commits] [lldb] [lldb] Adding pipe support to lldb_private::MainLoopWindows. (PR #145621)
John Harrison via lldb-commits
lldb-commits at lists.llvm.org
Tue Jul 1 10:41:22 PDT 2025
================
@@ -276,7 +276,7 @@ size_t ConnectionFileDescriptor::Read(void *dst, size_t dst_len,
"%p ConnectionFileDescriptor::Read() fd = %" PRIu64
", dst = %p, dst_len = %" PRIu64 ") => %" PRIu64 ", error = %s",
static_cast<void *>(this),
- static_cast<uint64_t>(m_io_sp->GetWaitableHandle()),
+ static_cast<file_t>(m_io_sp->GetWaitableHandle()),
----------------
ashgti wrote:
I'll fix that, I was thought that `file_t` was the more universal type to use for these handles.
https://github.com/llvm/llvm-project/pull/145621
More information about the lldb-commits
mailing list