aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2007-11-22 09:39:04 +0000
committerDaniel Stenberg <daniel@haxx.se>2007-11-22 09:39:04 +0000
commit4bd2d49ca1d92ca5cd90ce91af97e389a410c973 (patch)
treebece4fdfa6910f45b6053c31f4e5a9292030c902 /src/main.c
parentecfede9b3cb55a10452d19588062ab9b71b27f74 (diff)
make nlen a size_t to better hold diffs between pointers etc
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 862a9460b..d53a8628d 100644
--- a/src/main.c
+++ b/src/main.c
@@ -2059,7 +2059,7 @@ static ParameterError getparameter(char *flag, /* f or -long-flag */
*/
char *p = strchr(nextarg, '=');
long size = 0;
- int nlen;
+ size_t nlen;
char is_file;
if(!p)
p = strchr(nextarg, '@');