fix posix build breakage

This commit is contained in:
Joel Dice 2007-10-23 17:22:42 -06:00
parent dbf398e6d0
commit e145d09523

View File

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