From 08eb37a688e3a614902ab57e25624e4949380d34 Mon Sep 17 00:00:00 2001 From: noloader Date: Sat, 27 Jun 2015 23:22:42 +0000 Subject: 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 --- wait.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'wait.cpp') 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 -- cgit v1.2.1