Author: cfinck Date: Fri Jan 18 19:26:31 2008 New Revision: 31869
URL: http://svn.reactos.org/svn/reactos?rev=31869&view=rev Log: Fix the fix
Modified: trunk/reactos/tools/widl/write_msft.c
Modified: trunk/reactos/tools/widl/write_msft.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/tools/widl/write_msft.c?rev... ============================================================================== --- trunk/reactos/tools/widl/write_msft.c (original) +++ trunk/reactos/tools/widl/write_msft.c Fri Jan 18 19:26:31 2008 @@ -2413,7 +2413,7 @@
retval = TYPE_E_IOERROR;
- fd = open(typelib->typelib->filename, _O_CREAT | _O_RDWR | _O_BINARY, 0666); + fd = open(typelib->typelib->filename, O_CREAT | O_RDWR | O_BINARY, 0666); if (fd == -1) return retval;
filepos = sizeof(MSFT_Header) + sizeof(MSFT_SegDir);