aboutsummaryrefslogtreecommitdiff
path: root/ares
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-03-03 13:03:35 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-03-03 13:03:35 +0000
commit213d64fbd7653eb55f7bab5688972ef7b8d5f4c1 (patch)
treefa3b1b45b1730391088784ec4afb0afacecec212 /ares
parenta8419d68b6590365c5cb324372789bb5f68e56d5 (diff)
attempted typecase to silence the MIPSpro warning:
cc-1506 cc: REMARK File = ../../curl/ares/ares__read_line.c, Line = 46 There is an implicit conversion from "unsigned long" to "int"; rounding, sign extension, or loss of accuracy may result. if (!fgets(*buf + offset, *bufsize - offset, fp))
Diffstat (limited to 'ares')
-rw-r--r--ares/ares__read_line.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ares/ares__read_line.c b/ares/ares__read_line.c
index f550a7ad4..258f2f610 100644
--- a/ares/ares__read_line.c
+++ b/ares/ares__read_line.c
@@ -43,7 +43,7 @@ int ares__read_line(FILE *fp, char **buf, int *bufsize)
while (1)
{
- if (!fgets(*buf + offset, *bufsize - offset, fp))
+ if (!fgets(*buf + offset, *bufsize - (int)offset, fp))
return (offset != 0) ? 0 : (ferror(fp)) ? ARES_EFILE : ARES_EOF;
len = offset + strlen(*buf + offset);
if ((*buf)[len - 1] == '\n')