From: msweet Date: Thu, 28 Aug 2014 19:26:31 +0000 (+0000) Subject: Eliminate compiler warning. X-Git-Tag: v2.2b1~496 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c6cc3553c806b42f6e0d1cd5feba67d71bd4b74d;p=thirdparty%2Fcups.git Eliminate compiler warning. git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/trunk@12129 a1ca3aef-8c08-0410-bb20-df032aa958be --- diff --git a/cups/http-addr.c b/cups/http-addr.c index 62b0e173ad..9ad2ea3070 100644 --- a/cups/http-addr.c +++ b/cups/http-addr.c @@ -871,7 +871,7 @@ httpGetHostname(http_t *http, /* I - HTTP connection or NULL */ */ if (strlen(s) > 6 && !strcmp(s + strlen(s) - 6, ".local")) - strlcat(s, ".", slen); + strlcat(s, ".", (size_t)slen); } /*