diff --git a/harbour/ChangeLog b/harbour/ChangeLog index bdd016d267..c7cbd8808c 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,10 @@ +20000402-01:41 GMT+1 Victor Szakats + + * source/rtl/substr.c + ! Minor fix in comment. + * source/rtl/filesys.c + ! Bug fixed for __WATCOMC__ + 20000401-18:00 GMT+1 Victor Szakats * source/rtl/version.c diff --git a/harbour/source/rtl/filesys.c b/harbour/source/rtl/filesys.c index 61dc955245..0402cdd7e8 100644 --- a/harbour/source/rtl/filesys.c +++ b/harbour/source/rtl/filesys.c @@ -1101,7 +1101,7 @@ USHORT hb_fsChDrv( BYTE nDrive ) { /* 'unsigned int' _have to_ be used in Watcom */ - unsigned int uiSave = _getdrive(); + unsigned int uiSave; unsigned int uiTotal; /* 1 = A:, 2 = B:, 3 = C:, etc diff --git a/harbour/source/rtl/substr.c b/harbour/source/rtl/substr.c index 6a26c7f970..19aac7f45c 100644 --- a/harbour/source/rtl/substr.c +++ b/harbour/source/rtl/substr.c @@ -4,7 +4,7 @@ /* * Harbour Project source code: - * LEFT() function + * SUBSTR() function * * Copyright 1999 Antonio Linares * www - http://www.harbour-project.org