diff --git a/ChangeLog.txt b/ChangeLog.txt index 0760a2fd64..d0af508942 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -7,16 +7,23 @@ Entries may not always be in chronological/commit order. See license at the end of file. */ +2025-02-03 10:18 UTC+0100 Aleksander Czajczynski (hb fki.pl) + * contrib/hbcurl/core.c + ! reverted static keyword + + * ChangeLog.txt + ! formatting + 2025-02-03 09:09 UTC+0100 Antonio Linares (alinares/at/fivetechsoft.com) * contrib/hbcurl/core.c - ! HB_CURLOPT_WRITEFUNCTION implemented support - Required to use AI Ollama from Harbour so the tokens are visible to the user - as they are generated + ! HB_CURLOPT_WRITEFUNCTION implemented support + Required to use AI Ollama from Harbour so the tokens are visible to the user + as they are generated 2025-02-03 08:42 UTC+0100 Detlef Riekenberg * src/common/hbver.c - ! Open Watcom versions numbers started with "1.0" after the latest commercial Watcom 11.0c. - TinyC has no 1.0 release yet and is currently at 0.9.28rc. + ! Open Watcom versions numbers started with "1.0" after the latest commercial + Watcom 11.0c. TinyC has no 1.0 release yet and is currently at 0.9.28rc. 2025-02-01 08:37 UTC+0100 Przemyslaw Czerpak (druzus/at/poczta.onet.pl) + config/android/clang.mk diff --git a/contrib/hbcurl/core.c b/contrib/hbcurl/core.c index cdfb8656de..f055ef6b8a 100644 --- a/contrib/hbcurl/core.c +++ b/contrib/hbcurl/core.c @@ -531,7 +531,7 @@ static int hb_curl_debug_callback( CURL * handle, curl_infotype type, char * dat return 0; } -size_t static hb_curl_writefunction_callback( void *buffer, size_t size, size_t nmemb, void *Cargo ) +static size_t hb_curl_writefunction_callback( void *buffer, size_t size, size_t nmemb, void *Cargo ) { PHB_CURL hb_curl = ( PHB_CURL ) Cargo;