We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1d8edf commit c349dedCopy full SHA for c349ded
lldb/source/Utility/SelectHelper.cpp
@@ -111,8 +111,8 @@ lldb_private::Status SelectHelper::Select() {
111
#if !defined(__APPLE__) && !defined(_WIN32)
112
lldbassert(fd < static_cast<int>(FD_SETSIZE));
113
if (fd >= static_cast<int>(FD_SETSIZE)) {
114
- error =
115
- Status::FromErrorStringWithFormat("%i is too large for select()", fd);
+ error = lldb_private::Status::FromErrorStringWithFormat(
+ "%i is too large for select()", fd);
116
return error;
117
}
118
#endif
0 commit comments