summaryrefslogtreecommitdiffstats
path: root/attach.c
diff options
context:
space:
mode:
authorKevin McCarthy <kevin@8t8.us>2018-10-16 17:42:35 -0700
committerKevin McCarthy <kevin@8t8.us>2018-10-16 17:54:21 -0700
commit420226ce195dd9fd35669cd8fd91c308013077c3 (patch)
tree96c99075cc91587ab90b8b7024c8d0907d59e444 /attach.c
parent42481bda590bafdae82a8d78c85d873a30c9f452 (diff)
Minor syntactic cleanup in mutt_print_attachment().
Converting a return to a rc assignment accidentally left an extra parenthesis.
Diffstat (limited to 'attach.c')
-rw-r--r--attach.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/attach.c b/attach.c
index b41edcf8..94885ec1 100644
--- 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))