diff --git a/winsup/mingw/ChangeLog b/winsup/mingw/ChangeLog index 62ae570db..8aeb06ce3 100644 --- a/winsup/mingw/ChangeLog +++ b/winsup/mingw/ChangeLog @@ -1,3 +1,9 @@ +2009-11-13 Chris Sutcliffe + + * include/io.h (_open_osfhandle): Correct definition. + + Thanks to Alexander Shaduri for the information. + 2009-11-02 Charles Wilson Final sync of pseudo-reloc.c with mingw64 and cygwin diff --git a/winsup/mingw/include/io.h b/winsup/mingw/include/io.h index 0d3c11045..b46d6bfda 100644 --- a/winsup/mingw/include/io.h +++ b/winsup/mingw/include/io.h @@ -238,7 +238,7 @@ _CRTIMP long __cdecl __MINGW_NOTHROW _lseek (int, long, int); /* Optional third argument is unsigned unPermissions. */ _CRTIMP int __cdecl __MINGW_NOTHROW _open (const char*, int, ...); -_CRTIMP int __cdecl __MINGW_NOTHROW _open_osfhandle (long, int); +_CRTIMP int __cdecl __MINGW_NOTHROW _open_osfhandle (intptr_t, int); _CRTIMP int __cdecl __MINGW_NOTHROW _pipe (int *, unsigned int, int); _CRTIMP int __cdecl __MINGW_NOTHROW _read (int, void*, unsigned int); _CRTIMP int __cdecl __MINGW_NOTHROW _setmode (int, int);