Skip to content

Commit

Permalink
2023-12-08 23:17 UTC+0100 Phil Krylov (phil a t krylov.eu)
Browse files Browse the repository at this point in the history
  * contrib/sddsqlt3/core.c
    ! Fixed a different signedness compare warning.
  • Loading branch information
tuffnatty committed Dec 8, 2023
1 parent 145cc37 commit 8405632
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@
Entries may not always be in chronological/commit order.
See license at the end of file. */

2023-12-08 23:17 UTC+0100 Phil Krylov (phil a t krylov.eu)
* contrib/sddsqlt3/core.c
! Fixed a different signedness compare warning.

2023-12-07 21:25 UTC+0100 Phil Krylov (phil a t krylov.eu)
* contrib/3rd/sqlite3/*
* Updated local sqlite3 from 3.8.2 to 3.44.2.
Expand Down
2 changes: 1 addition & 1 deletion contrib/sddsqlt3/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ static HB_ERRCODE sqlite3Open( SQLBASEAREAP pArea )
#ifdef HB_SQLT3_MAP_DECLARED_EMULATED
sqlite3DeclStru( st, uiIndex, &uiRetLen, NULL );
#endif
dbFieldInfo.uiLen = ( HB_USHORT ) HB_MAX( nSize, uiRetLen );
dbFieldInfo.uiLen = ( HB_USHORT ) HB_MAX( nSize, ( HB_SIZE ) uiRetLen );
pStr = ( char * ) hb_xgrab( ( HB_SIZE ) dbFieldInfo.uiLen + 1 );
memset( pStr, ' ', dbFieldInfo.uiLen );
hb_itemPutCLPtr( pItem, pStr, dbFieldInfo.uiLen );
Expand Down

0 comments on commit 8405632

Please sign in to comment.