From 7147cb51157131a0bdfa2d6baec2e5d1406f9592 Mon Sep 17 00:00:00 2001 From: Brendan Cully <brendan@kublai.com> Date: Tue, 10 Apr 2007 13:53:51 -0700 Subject: [PATCH] Fix a compiler warning --- ChangeLog | 5 +++++ main.c | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 52158534..2c43d7bb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-04-10 13:46 -0700 Brendan Cully <brendan@kublai.com> (d3e0d6c60d87) + + * rfc3676.c: Don't use $indent_string to quote replies to flowed + messages (closes #2874). + 2007-04-10 10:16 -0700 Petr PÃsaÅ <petr.pisar@atlas.cz> (af01580c9a08) * po/cs.po: Updated Czech translation diff --git a/main.c b/main.c index e84ac800..be3961c8 100644 --- a/main.c +++ b/main.c @@ -803,6 +803,7 @@ int main (int argc, char **argv) char buf[LONG_STRING]; char *tempfile = NULL, *infile = NULL; char *bodytext = NULL; + int rv = 0; if (!option (OPTNOCURSES)) mutt_flushinp (); @@ -924,7 +925,7 @@ int main (int argc, char **argv) mutt_free_list (&attach); } - int rv = ci_send_message (sendflags, msg, tempfile, NULL, NULL); + rv = ci_send_message (sendflags, msg, tempfile, NULL, NULL); if (!option (OPTNOCURSES)) mutt_endwin (NULL); -- 2.40.0