mirror of
https://github.com/curl/curl.git
synced 2026-07-16 07:47:16 +03:00
memdebug: replace (fwrite) with fwrite
Cherry-picked from #19626 Closes #19735
This commit is contained in:
parent
63eb0627b1
commit
6dc82c8046
1 changed files with 1 additions and 1 deletions
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue