See ChangeLog entry 19990604-12:35 EDT David G. Holm <dholm@jsd-llc.com>

This commit is contained in:
David G. Holm
1999-06-04 17:43:45 +00:00
parent 67c39e77d7
commit ada19e995f
2 changed files with 5 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
19990604-12:35 EDT David G. Holm <dholm@jsd-llc.com>
* source/rtl/dates.c
- Corrected HARBOUR DOW() to use _retni() instead of _retnl()
19990604-12:30 EDT David G. Holm <dholm@jsd-llc.com>
* source/vm/hvm.c
- Corrected HARBOUR ERRORLEVEL() to not change the error level if

View File

@@ -475,7 +475,7 @@ HARBOUR DOW( void )
if( pDate )
{
hb_dateDecode( pDate->value.lDate, &lDay, &lMonth, &lYear );
_retnl( hb_dow( lDay, lMonth, lYear ) );
_retni( hb_dow( lDay, lMonth, lYear ) );
stack.Return.wLength = 3;
}
else