From e145d095234ae3d94b37ff1e0691f828ad227685 Mon Sep 17 00:00:00 2001 From: Joel Dice Date: Tue, 23 Oct 2007 17:22:42 -0600 Subject: [PATCH] fix posix build breakage --- classpath/java-nio.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classpath/java-nio.cpp b/classpath/java-nio.cpp index fef2169e3e..59dda5c83a 100644 --- a/classpath/java-nio.cpp +++ b/classpath/java-nio.cpp @@ -56,7 +56,7 @@ errorString(JNIEnv* e) snprintf(buffer, size, "wsa code: %d", WSAGetLastError()); return charsToArray(e, buffer); #else - return errorString(errno); + return errorString(e, errno); #endif }