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:
@@ -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.
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user