Commit 9ff40349 9ff403495c8759c2483057a2c499c4e8e261277a by Sergey Poznyakoff

(move_message): Fix error diagnostics format.

1 parent afb78dee
...@@ -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 }
......