diff --git a/ChangeLog.txt b/ChangeLog.txt index 20bc4397ee..021d94cb13 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -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 @@ -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 diff --git a/contrib/rddsql/sqlbase.c b/contrib/rddsql/sqlbase.c index 84232bfb04..b88ce244f4 100644 --- a/contrib/rddsql/sqlbase.c +++ b/contrib/rddsql/sqlbase.c @@ -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 );