Wrapped errno in IntToString

pull/2/head
Jeffrey Walton 2015-06-04 23:06:15 -04:00
parent e0959c5293
commit 442c6497c0
1 changed files with 1 additions and 1 deletions

View File

@ -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