diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-03-08 12:56:18 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-03-08 12:56:18 +0000 |
commit | c30cb73a5bc577f7ae6122137e4b8e99e6208231 (patch) | |
tree | 89b5319d54db979e6796ef926f6d87a5f45addb2 | |
parent | b7c56594b3460cda5c14fad6832ba485d4610bb6 (diff) |
fread() returns a size_t
-rw-r--r-- | src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c index c1c260281..419a79301 100644 --- a/src/main.c +++ b/src/main.c @@ -555,7 +555,7 @@ static char *file2memory(FILE *file, long *size) char buffer[1024]; char *string=NULL; char *newstring=NULL; - long len=0; + size_t len=0; long stringlen=0; if(file) { |