summaryrefslogtreecommitdiff
path: root/cups/http-support.c
diff options
context:
space:
mode:
authorMichael Sweet <michael.r.sweet@gmail.com>2016-05-30 19:47:39 -0400
committerMichael Sweet <michael.r.sweet@gmail.com>2016-05-30 19:47:39 -0400
commit329cfeb0134d831f2846f38c1dbe13f5c3863d91 (patch)
tree8ec0f06cae7ada62188ee29e83420844cf3af45b /cups/http-support.c
parentad7daa2593a91dbe3e73ef94dc32d93dee7f7517 (diff)
downloadcups-329cfeb0134d831f2846f38c1dbe13f5c3863d91.tar.gz
Fix compiler warning.
Diffstat (limited to 'cups/http-support.c')
-rw-r--r--cups/http-support.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cups/http-support.c b/cups/http-support.c
index b62ef3596..29e9f254d 100644
--- a/cups/http-support.c
+++ b/cups/http-support.c
@@ -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));