2018-06-01 00:25 UTC+0300 Phil Krylov (phil a t newstar.rinet.ru)

* src/rtl/trim.c
    ! Fixed HB_SIZE format specifier in HB_TRACE format string.
This commit is contained in:
Phil Krylov
2018-06-01 00:25:47 +03:00
parent 9183c2a865
commit c3628b6020
2 changed files with 5 additions and 1 deletions

View File

@@ -7,6 +7,10 @@
Entries may not always be in chronological/commit order.
See license at the end of file. */
2018-06-01 00:25 UTC+0300 Phil Krylov (phil a t newstar.rinet.ru)
* src/rtl/trim.c
! Fixed HB_SIZE format specifier in HB_TRACE format string.
2018-05-11 12:23 UTC+0200 maurilio (maurilio.longo@libero.it)
* contrib/hbssl/hbssl.hbx
* contrib/hbssl/ssl.c

View File

@@ -66,7 +66,7 @@ const char * hb_strLTrim( const char * szText, HB_SIZE * nLen )
/* return length of szText ignoring trailing white space (or true spaces) */
HB_SIZE hb_strRTrimLen( const char * szText, HB_SIZE nLen, HB_BOOL bAnySpace )
{
HB_TRACE( HB_TR_DEBUG, ( "hb_strRTrimLen(%s, %lu. %d)", szText, nLen, ( int ) bAnySpace ) );
HB_TRACE( HB_TR_DEBUG, ( "hb_strRTrimLen(%s, %" HB_PFS "u, %d)", szText, nLen, ( int ) bAnySpace ) );
if( bAnySpace )
{