commit b7f852218b4032e66e77cc63424e0a3e51ae066d parent c927230cdcc4fbff1c75d148028a1949f43a4722 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;