2008-07-29 04:58 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

* harbour/source/rtl/filesys.c
    ! fixed casting in DOS builds
This commit is contained in:
Przemyslaw Czerpak
2008-07-29 02:58:48 +00:00
parent 74a9559eef
commit 43b414e9f7
2 changed files with 5 additions and 1 deletions

View File

@@ -8,6 +8,10 @@
2008-12-31 13:59 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
2008-07-29 04:58 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/source/rtl/filesys.c
! fixed casting in DOS builds
2008-07-29 00:10 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* contrib/hbhpdf/Makefile
! Refixed to exclude hbhpdf from DOS builds.

View File

@@ -989,7 +989,7 @@ HB_EXPORT BOOL hb_fsGetAttr( BYTE * pszFileName, ULONG * pulAttr )
#elif defined( HB_OS_DOS )
{
#if defined( __DJGPP__ ) || defined(__BORLANDC__)
int attr = _chmod( pszFileName, 0, 0 );
int attr = _chmod( ( char * ) pszFileName, 0, 0 );
if( attr != -1 )
#else
unsigned int attr = 0;