projects
/
platform
/
upstream
/
c-ares.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
650fd8c
)
don't mix int and size_t, it generates warnings!
author
Daniel Stenberg
<daniel@haxx.se>
Thu, 26 Feb 2004 12:45:29 +0000
(12:45 +0000)
committer
Daniel Stenberg
<daniel@haxx.se>
Thu, 26 Feb 2004 12:45:29 +0000
(12:45 +0000)
ares__read_line.c
patch
|
blob
|
history
diff --git
a/ares__read_line.c
b/ares__read_line.c
index d816f18c06de47b8f70f768d1776a7af99ff4b14..f550a7ad4816f5e9f23f2d8df3c34ccb9a50579a 100644
(file)
--- a/
ares__read_line.c
+++ b/
ares__read_line.c
@@
-30,7
+30,7
@@
int ares__read_line(FILE *fp, char **buf, int *bufsize)
{
char *newbuf;
-
in
t offset = 0;
+
size_
t offset = 0;
size_t len;
if (*buf == NULL)