see changelog

This commit is contained in:
Eddie Runia
1999-06-17 11:43:58 +00:00
parent 7d85392e66
commit b6afc7e121
3 changed files with 8 additions and 2 deletions

View File

@@ -1,3 +1,9 @@
19990617-12:40 CET Eddie Runia
* source/rtl/dir.c
hb_chmod should be _chmod
* tests/working/round.prg
loop shortened to 100 (I thought the program has crashed, while testalling)
19990617-12:20 CET Eddie Runia
* source/compiler/harbour.y
GetLocalVarPos : OurMalloc( sizeof(PVAR) ) should be sizeof(VAR)

View File

@@ -263,7 +263,7 @@ HARBOUR HB_DIRECTORY( void )
aatrib[0] = '\0';
#else
/* TODO: seems to not clear on root entries ? */
attrib = hb_chmod(fullfile,0);
attrib = _chmod(fullfile,0);
if (attrib & FA_ARCH)
strcat(aatrib,"A");
if (attrib & FA_DIREC)

View File

@@ -9,7 +9,7 @@
function main()
local n, value := -5
for n := 1 to 10000
for n := 1 to 100
OUTSTD(NewLine)
OUTSTD(value)
OUTSTD(round(value, 3))