2009-10-29 15:41 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

* harbour/src/rtl/dates.c
    ! fixed HB_TTOC() to not add leading space when date part is empty
This commit is contained in:
Przemyslaw Czerpak
2009-10-29 14:41:46 +00:00
parent 5d62222866
commit ff3649b64d
2 changed files with 6 additions and 1 deletions

View File

@@ -17,6 +17,10 @@
past entries belonging to author(s): Viktor Szakats.
*/
2009-10-29 15:41 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/src/rtl/dates.c
! fixed HB_TTOC() to not add leading space when date part is empty
2009-10-29 15:17 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
+ harbour/doc/xhb-diff.txt
+ added text which describes most important differences between Harbour

View File

@@ -518,7 +518,8 @@ char * hb_timeStampFormat( char * szBuffer,
hb_dateDecStr( szDate, lJulian );
hb_dateFormat( szDate, szBuffer, szDateFormat );
szTimeBuffer = szBuffer + strlen( szBuffer );
*szTimeBuffer++ = ' ';
if( *szBuffer )
*szTimeBuffer++ = ' ';
hb_timeFormat( szTimeBuffer, szTimeFormat, lMilliSec );
return szBuffer;