From 40e7858e19121b1f583721f4b70760197d1c7b62 Mon Sep 17 00:00:00 2001 From: msweet Date: Wed, 28 Oct 2015 16:45:50 +0000 Subject: [PATCH] Fix compile error. git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/trunk@12950 a1ca3aef-8c08-0410-bb20-df032aa958be --- test/ipptool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/ipptool.c b/test/ipptool.c index cd1f642b1..9f4551566 100644 --- a/test/ipptool.c +++ b/test/ipptool.c @@ -3996,7 +3996,7 @@ get_string(ipp_attribute_t *attr, /* I - IPP attribute */ if ((ptr = hostname + strlen(hostname) - 1) >= hostname && *ptr == '.') *ptr = '\0'; - httpAssembleURI(HTTP_URI_CODING_ALL, buffer, bufsize, scheme, userpass, hostname, port, resource); + httpAssembleURI(HTTP_URI_CODING_ALL, buffer, (int)bufsize, scheme, userpass, hostname, port, resource); } return (buffer); -- 2.39.2