summaryrefslogtreecommitdiff
path: root/wait.cpp
diff options
context:
space:
mode:
authornoloader <noloader@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2015-06-27 23:22:42 +0000
committernoloader <noloader@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2015-06-27 23:22:42 +0000
commit08eb37a688e3a614902ab57e25624e4949380d34 (patch)
treec7cd2502e95d3a9efa2bc3c31149340a958af9bd /wait.cpp
parent1474faab25ee0d59f75c450abe47542f0747e21d (diff)
downloadcryptopp-08eb37a688e3a614902ab57e25624e4949380d34.tar.gz
Fix compile issue on Android. Fix missing IntToString
git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@543 57ff6487-cd31-0410-9ec3-f628ee90f5f0
Diffstat (limited to 'wait.cpp')
-rw-r--r--wait.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/wait.cpp b/wait.cpp
index 1987858..c1bfa00 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