]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
Fix compiler warning.
authorMichael Sweet <michael.r.sweet@gmail.com>
Mon, 30 May 2016 23:47:39 +0000 (19:47 -0400)
committerMichael Sweet <michael.r.sweet@gmail.com>
Mon, 30 May 2016 23:47:39 +0000 (19:47 -0400)
cups/http-support.c

index b62ef3596c9b18bdd8977f43cebfdb3ec048e9a2..29e9f254d7d68ad683c9c3f78c096562e44417e8 100644 (file)
@@ -2532,7 +2532,7 @@ http_resolve_cb(
   * Assemble the final device URI using the resolved hostname...
   */
 
-  httpAssembleURI(HTTP_URI_CODING_ALL, uribuf->buffer, uribuf->bufsize, scheme,
+  httpAssembleURI(HTTP_URI_CODING_ALL, uribuf->buffer, (int)uribuf->bufsize, scheme,
                   NULL, hostTarget, port, resource);
   DEBUG_printf(("5http_resolve_cb: Resolved URI is \"%s\".", uribuf->buffer));