Skip to content

Commit

Permalink
fopen.c: fix a few compiler warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
bagder committed Jun 8, 2015
1 parent 56b7663 commit eaeeed2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/examples/fopen.c
Expand Up @@ -205,7 +205,7 @@ static int fill_buffer(URL_FILE *file, size_t want)
}

/* use to remove want bytes from the front of a files buffer */
static int use_buffer(URL_FILE *file,int want)
static int use_buffer(URL_FILE *file, size_t want)
{
/* sort out buffer */
if((file->buffer_pos - want) <=0) {
Expand Down Expand Up @@ -375,7 +375,7 @@ char *url_fgets(char *ptr, size_t size, URL_FILE *file)

switch(file->type) {
case CFTYPE_FILE:
ptr = fgets(ptr,size,file->handle.file);
ptr = fgets(ptr, (int)size, file->handle.file);
break;

case CFTYPE_CURL:
Expand Down Expand Up @@ -451,7 +451,7 @@ int main(int argc, char *argv[])
URL_FILE *handle;
FILE *outf;

int nread;
size_t nread;
char buffer[256];
const char *url;

Expand Down Expand Up @@ -499,7 +499,7 @@ int main(int argc, char *argv[])
}

do {
nread = url_fread(buffer, 1,sizeof(buffer), handle);
nread = url_fread(buffer, 1, sizeof(buffer), handle);
fwrite(buffer,1,nread,outf);
} while(nread);

Expand Down

0 comments on commit eaeeed2

Please sign in to comment.