X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=bindings%2Fruby%2Fquery.c;h=2e36df6a05814a7feb18baef5f2e025fa021c1c8;hp=ce66926cfe7428b0c825fcb388d69d898f332aa4;hb=86cbd215eb67d7b996c977352a50e70c101cb641;hpb=07dff496304d6dc2e8033a18691b095ed9cd212f diff --git a/bindings/ruby/query.c b/bindings/ruby/query.c index ce66926c..2e36df6a 100644 --- a/bindings/ruby/query.c +++ b/bindings/ruby/query.c @@ -138,7 +138,7 @@ notmuch_rb_query_search_threads (VALUE self) Data_Get_Notmuch_Query (self, query); - status = notmuch_query_search_threads_st (query, &threads); + status = notmuch_query_search_threads (query, &threads); if (status) notmuch_rb_status_raise (status); @@ -159,7 +159,7 @@ notmuch_rb_query_search_messages (VALUE self) Data_Get_Notmuch_Query (self, query); - status = notmuch_query_search_messages_st (query, &messages); + status = notmuch_query_search_messages (query, &messages); if (status) notmuch_rb_status_raise (status);