Merge branch 'gnu'

This commit is contained in:
Joel Dice
2009-08-03 09:01:16 -06:00
69 changed files with 3828 additions and 1060 deletions

View File

@ -82,7 +82,7 @@ namespace {
int descriptor(JNIEnv* e, HANDLE h)
{
int fd = _open_osfhandle(reinterpret_cast<long>(h), 0);
int fd = _open_osfhandle(reinterpret_cast<intptr_t>(h), 0);
if (fd == -1) {
throwNew(e, "java/io/IOException", strerror(errno));
}