]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
Fix parens.
authorMichael R Sweet <michael.r.sweet@gmail.com>
Sat, 26 Nov 2022 15:17:39 +0000 (10:17 -0500)
committerMichael R Sweet <michael.r.sweet@gmail.com>
Sat, 26 Nov 2022 15:17:39 +0000 (10:17 -0500)
notifier/rss.c

index 23c4ba2805ee011087a4a7909d74f15438e4d25a..5c652fdb90ecdddcccec678e5430390b96018e4f 100644 (file)
@@ -156,8 +156,7 @@ main(int  argc,                             /* I - Number of command-line arguments */
       return (1);
     }
 
-    if (http = (httpConnect2(host, port, NULL, AF_UNSPEC,
-                             HTTP_ENCRYPTION_IF_REQUESTED, 1, 30000, NULL)) == NULL)
+    if ((http = httpConnect2(host, port, NULL, AF_UNSPEC, HTTP_ENCRYPTION_IF_REQUESTED, 1, 30000, NULL)) == NULL)
     {
       fprintf(stderr, "ERROR: Unable to connect to %s on port %d: %s\n",
               host, port, strerror(errno));