summaryrefslogtreecommitdiff
path: root/lib/inet_pton.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2010-06-08 23:09:42 +0200
committerDaniel Stenberg <daniel@haxx.se>2010-06-08 23:09:42 +0200
commitbb60fe0c1af619ff1507424fa2b27dc458a7215b (patch)
tree3122e7b6e83d6780febc3409538b13f20f764c30 /lib/inet_pton.c
parentfeecf63a9607cce4c9339ad9f1b5a550e6bd2d98 (diff)
downloadcurl-bb60fe0c1af619ff1507424fa2b27dc458a7215b.tar.gz
inet_pton: warnings: use size_t to store pointer deltas
Diffstat (limited to 'lib/inet_pton.c')
-rw-r--r--lib/inet_pton.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/inet_pton.c b/lib/inet_pton.c
index 9189ce675..db4f39307 100644
--- a/lib/inet_pton.c
+++ b/lib/inet_pton.c
@@ -159,7 +159,7 @@ inet_pton6(const char *src, unsigned char *dst)
unsigned char tmp[IN6ADDRSZ], *tp, *endp, *colonp;
const char *xdigits, *curtok;
int ch, saw_xdigit;
- unsigned int val;
+ size_t val;
memset((tp = tmp), 0, IN6ADDRSZ);
endp = tp + IN6ADDRSZ;
@@ -218,8 +218,8 @@ inet_pton6(const char *src, unsigned char *dst)
* Since some memmove()'s erroneously fail to handle
* overlapping regions, we'll do the shift by hand.
*/
- const long n = tp - colonp;
- long i;
+ const size_t n = tp - colonp;
+ size_t i;
if(tp == endp)
return (0);