commit f343a7fe7e3a4eeb90224429943b04a8083bc857 parent 382a0b3e279e870ea786af5616998ee6ed10c563 Author: Paul <paul@claws-mail.org> Date: Fri, 29 Jun 2018 15:38:33 +0100 use TRUE/FALSE instead of 1/0 Diffstat:
| M | src/messageview.c | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/messageview.c b/src/messageview.c @@ -870,10 +870,10 @@ static gint disposition_notification_send(MsgInfo *msginfo) if (ac_list == NULL) { ac_list = account_find_all(); - if ((account = select_account_from_list(ac_list,0)) == NULL) + if ((account = select_account_from_list(ac_list,FALSE)) == NULL) return -1; } else if (g_list_length(ac_list) > 1) { - if ((account = select_account_from_list(ac_list,1)) == NULL) + if ((account = select_account_from_list(ac_list,TRUE)) == NULL) return -1; } else if (ac_list != NULL) account = (PrefsAccount *) ac_list->data;