]> granicus.if.org Git - mutt/commitdiff
Minor syntactic cleanup in mutt_print_attachment().
authorKevin McCarthy <kevin@8t8.us>
Wed, 17 Oct 2018 00:42:35 +0000 (17:42 -0700)
committerKevin McCarthy <kevin@8t8.us>
Wed, 17 Oct 2018 00:54:21 +0000 (17:54 -0700)
Converting a return to a rc assignment accidentally left an extra
parenthesis.

attach.c

index b41edcf8eed5323039104c27e7d91eb23a2e2e27..94885ec1688e1d3f04adaacd0fd6b1408842edcd 100644 (file)
--- a/attach.c
+++ b/attach.c
@@ -1017,7 +1017,7 @@ int mutt_print_attachment (FILE *fp, BODY *a)
   if (!ascii_strcasecmp ("text/plain", type) ||
       !ascii_strcasecmp ("application/postscript", type))
   {
-    rc = (mutt_pipe_attachment (fp, a, NONULL(PrintCmd), NULL));
+    rc = mutt_pipe_attachment (fp, a, NONULL(PrintCmd), NULL);
     goto out;
   }
   else if (mutt_can_decode (a))