Skip to content

Commit

Permalink
2024-12-19 10:24 UTC+0100 Aleksander Czajczynski (hb fki.pl)
Browse files Browse the repository at this point in the history
  * contrib/rddsql/sqlbase.c
    % cleanup unnecessary braces

  * ChangeLog.txt
    + missing entry from pull request #364
  • Loading branch information
alcz committed Dec 19, 2024
1 parent 1e0c5c6 commit ce1bc20
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
14 changes: 14 additions & 0 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@
Entries may not always be in chronological/commit order.
See license at the end of file. */

2024-12-19 10:24 UTC+0100 Aleksander Czajczynski (hb fki.pl)
* contrib/rddsql/sqlbase.c
% cleanup unnecessary braces

* ChangeLog.txt
+ missing entry from pull request #364

2024-12-18 21:48 UTC-0800 Eric Lendvai (harbour.wiki)
* contrib/rddsql/sqlbase.c
* contrib/rddsql/sqlmix.c
Expand Down Expand Up @@ -100,6 +107,13 @@
* src/rdd/dbf1.c
* minor code formatting

2024-12-07 20:32 UTC-0300 Mario Wan Stadnik (wanstadnik gmail.com)
* utils/hbmk2/hbmk2.prg
* patch for MingW64 14.2.0 to find windres.exe automatically,
otherwise it failed with the resource compiler not found
error because it only looked for i686-w64-mingw32-windres.exe
instead of windres.exe.

2024-12-04 15:25 UTC+0100 Aleksander Czajczynski (hb fki.pl)
* src/common/hbver.c
! added lacking VER_BUILDNUMBER definition that is missing
Expand Down
6 changes: 2 additions & 4 deletions contrib/rddsql/sqlbase.c
Original file line number Diff line number Diff line change
Expand Up @@ -744,10 +744,8 @@ static HB_ERRCODE sqlbaseCreate( SQLBASEAREAP pArea, LPDBOPENINFO pOpenInfo )
break;

case HB_FT_TIMESTAMP:
{
pItem = hb_itemPutTDT( NULL, 0, 0 );
break;
}
pItem = hb_itemPutTDT( NULL, 0, 0 );
break;

case HB_FT_LOGICAL:
pItem = hb_itemPutL( NULL, HB_FALSE );
Expand Down

0 comments on commit ce1bc20

Please sign in to comment.