Wrapped errno in IntToString
parent
e0959c5293
commit
442c6497c0
2
wait.cpp
2
wait.cpp
|
|
@ -363,7 +363,7 @@ bool WaitObjectContainer::Wait(unsigned long milliseconds)
|
|||
else if (result == 0)
|
||||
return timeoutIsScheduledEvent;
|
||||
else
|
||||
throw Err("WaitObjectContainer: select failed with error " + errno);
|
||||
throw Err("WaitObjectContainer: select failed with error " + IntToString(errno));
|
||||
}
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Reference in New Issue