mirror of
https://github.com/curl/curl.git
synced 2026-08-25 12:23:44 +03:00
Fixed some more simple compile warnings in the examples.
This commit is contained in:
parent
b85b56a73d
commit
4706a93341
9 changed files with 12 additions and 9 deletions
|
|
@ -26,7 +26,7 @@ struct FtpFile {
|
|||
FILE *stream;
|
||||
};
|
||||
|
||||
int my_fwrite(void *buffer, size_t size, size_t nmemb, void *stream)
|
||||
static int my_fwrite(void *buffer, size_t size, size_t nmemb, void *stream)
|
||||
{
|
||||
struct FtpFile *out=(struct FtpFile *)stream;
|
||||
if(out && !out->stream) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue