/* store other system flags as well (mainly \\Draft) */
if (is_system_keyword)
- mutt_str_append_item(&hd->flags_system, flag_word, 32);
+ mutt_str_append_item(&hd->flags_system, flag_word, ' ');
/* store custom flags as well */
else
- mutt_str_append_item(&hd->flags_remote, flag_word, 32);
+ mutt_str_append_item(&hd->flags_remote, flag_word, ' ');
*s = ctmp;
}
id = notmuch_message_get_thread_id(msg);
if (!id)
goto done;
- mutt_str_append_item(&qstr, "thread:", 0);
- mutt_str_append_item(&qstr, id, 0);
+ mutt_str_append_item(&qstr, "thread:", '\0');
+ mutt_str_append_item(&qstr, id, '\0');
q = notmuch_query_create(db, qstr);
FREE(&qstr);