X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=bindings%2Fruby%2Fquery.c;h=8b46d700bdab01554c8944ec7903ea9ce8a3707e;hb=3721bd45d72e50436ee760b03ae533d49bbb8724;hp=2e36df6a05814a7feb18baef5f2e025fa021c1c8;hpb=86cbd215eb67d7b996c977352a50e70c101cb641;p=notmuch diff --git a/bindings/ruby/query.c b/bindings/ruby/query.c index 2e36df6a..8b46d700 100644 --- a/bindings/ruby/query.c +++ b/bindings/ruby/query.c @@ -180,7 +180,7 @@ notmuch_rb_query_count_messages (VALUE self) Data_Get_Notmuch_Query (self, query); - status = notmuch_query_count_messages_st (query, &count); + status = notmuch_query_count_messages (query, &count); if (status) notmuch_rb_status_raise (status); @@ -201,7 +201,7 @@ notmuch_rb_query_count_threads (VALUE self) Data_Get_Notmuch_Query (self, query); - status = notmuch_query_count_threads_st (query, &count); + status = notmuch_query_count_threads (query, &count); if (status) notmuch_rb_status_raise (status);