From: Yang Tse Date: Wed, 10 Sep 2008 13:39:35 +0000 (+0000) Subject: fix compiler warning X-Git-Tag: curl-7_19_1~387 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a834b98232803a4181451b57c1b87669bde213b3;p=thirdparty%2Fcurl.git fix compiler warning --- diff --git a/lib/ssh.c b/lib/ssh.c index dbece956ac..17efff13b7 100644 --- a/lib/ssh.c +++ b/lib/ssh.c @@ -2437,7 +2437,7 @@ get_pathname(const char **cpp, char **path) { const char *cp = *cpp, *end; char quot; - u_int i, j; + unsigned int i, j; static const char * const WHITESPACE = " \t\r\n"; cp += strspn(cp, WHITESPACE);