diff --git a/harbour/ChangeLog b/harbour/ChangeLog index f5ffb59660..698dd1957d 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,7 @@ +20000322-17:35 EST Paul Tucker + * source/rtl/diskspac.c + * min() -> HB_MIN + 20000323-09:10 GMT+3 Alexander Kresin * contrib/rdd_ads/adsfunc.c * Fixed bug in ADSSETDELETED(), as proposed by Sid Sailors diff --git a/harbour/source/rtl/diskspac.c b/harbour/source/rtl/diskspac.c index 7a5f508121..4ed71d4e0e 100644 --- a/harbour/source/rtl/diskspac.c +++ b/harbour/source/rtl/diskspac.c @@ -67,7 +67,7 @@ HB_FUNC( DISKSPACE ) USHORT uiType = ISNUM( 2 ) ? hb_parni( 2 ) : HB_DISK_AVAIL; double dSpace = 0.0; - uiType = min( uiType, HB_DISK_TOTAL ); + uiType = HB_MIN( uiType, HB_DISK_TOTAL ); #if defined(HB_OS_DOS) || defined(__WATCOMC__)