From: Michael R Sweet Date: Wed, 14 Nov 2018 15:17:41 +0000 (-0500) Subject: Fix compile error. X-Git-Tag: v2.3b6~30 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cee8cdadee95c9cf7540735e3b8d40388ecaed43;p=thirdparty%2Fcups.git Fix compile error. --- diff --git a/cups/auth.c b/cups/auth.c index 0a490948c8..b97a6b61c7 100644 --- a/cups/auth.c +++ b/cups/auth.c @@ -442,7 +442,7 @@ _cupsSetNegotiateAuthString( */ int authsize = 10 + /* "Negotiate " */ - (int)((output_token.length * 4 / 3 + 3) & ~3) + 1; + (((int)output_token.length * 4 / 3 + 3) & ~3) + 1; /* Base64 + nul */ httpSetAuthString(http, NULL, NULL);