From 442c6497c0303c2f3c0d457a0f7ded821549843e Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Thu, 4 Jun 2015 23:06:15 -0400 Subject: [PATCH] Wrapped errno in IntToString --- wait.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wait.cpp b/wait.cpp index 19878583..c1bfa00b 100644 --- a/wait.cpp +++ b/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