memdebug: replace (fwrite) with fwrite

Cherry-picked from #19626
Closes #19735
This commit is contained in:
Viktor Szakats 2025-11-20 03:57:45 +01:00
parent 63eb0627b1
commit 6dc82c8046
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201

View file

@ -526,7 +526,7 @@ void curl_dbg_log(const char *format, ...)
nchars = (int)sizeof(buf) - 1;
if(nchars > 0)
(fwrite)(buf, 1, (size_t)nchars, curl_dbg_logfile);
fwrite(buf, 1, (size_t)nchars, curl_dbg_logfile);
}
#endif /* CURLDEBUG */