use HB_MIN instead of min

This commit is contained in:
Paul Tucker
2000-03-23 22:35:58 +00:00
parent 5c8bd273bb
commit b1dd65ca35
2 changed files with 5 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
20000322-17:35 EST Paul Tucker <ptucker@sympatico.ca>
* 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

View File

@@ -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__)