(move_message): Fix error diagnostics format.
Showing
1 changed file
with
2 additions
and
2 deletions
... | @@ -211,13 +211,13 @@ move_message (mailbox_t src, mailbox_t dst, size_t msgno) | ... | @@ -211,13 +211,13 @@ move_message (mailbox_t src, mailbox_t dst, size_t msgno) |
211 | 211 | ||
212 | if ((rc = mailbox_get_message (src, msgno, &msg)) != 0) | 212 | if ((rc = mailbox_get_message (src, msgno, &msg)) != 0) |
213 | { | 213 | { |
214 | fprintf (stderr, _("Cannot read message %lu: %s"), | 214 | fprintf (stderr, _("Cannot read message %lu: %s\n"), |
215 | (unsigned long) msgno, mu_strerror (rc)); | 215 | (unsigned long) msgno, mu_strerror (rc)); |
216 | return rc; | 216 | return rc; |
217 | } | 217 | } |
218 | if ((rc = mailbox_append_message (dst, msg)) != 0) | 218 | if ((rc = mailbox_append_message (dst, msg)) != 0) |
219 | { | 219 | { |
220 | fprintf (stderr, _("Cannot append message %lu: %s"), | 220 | fprintf (stderr, _("Cannot append message %lu: %s\n"), |
221 | (unsigned long) msgno, mu_strerror (rc)); | 221 | (unsigned long) msgno, mu_strerror (rc)); |
222 | return rc; | 222 | return rc; |
223 | } | 223 | } | ... | ... |
-
Please register or sign in to post a comment