X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=lib%2Fthread.cc;h=1a1ecfa5507ee8cf35e243eb4b44ddfdcd0526eb;hb=4ce7591610444a1c5ef6f56b57af8e180437fa62;hp=84ee52980df6130948b7c2fd8c64bbb4c03d242f;hpb=07dff496304d6dc2e8033a18691b095ed9cd212f;p=notmuch diff --git a/lib/thread.cc b/lib/thread.cc index 84ee5298..1a1ecfa5 100644 --- a/lib/thread.cc +++ b/lib/thread.cc @@ -26,7 +26,7 @@ #define EMPTY_STRING(s) ((s)[0] == '\0') -struct visible _notmuch_thread { +struct _notmuch_thread { notmuch_database_t *notmuch; char *thread_id; char *subject; @@ -505,7 +505,7 @@ _notmuch_thread_create (void *ctx, * oldest or newest subject is desired. */ notmuch_query_set_sort (thread_id_query, NOTMUCH_SORT_OLDEST_FIRST); - status = notmuch_query_search_messages_st (thread_id_query, &messages); + status = notmuch_query_search_messages (thread_id_query, &messages); if (status) goto DONE;