mirror of
https://git.notmuchmail.org/git/notmuch
synced 2025-03-14 03:25:15 +01:00
ruby: fix missing symbol UINT2FIX()
It has never existed in Ruby (maybe JRuby). Fortunately the symbols are loaded lazily, so nobody would notice unless they try 'query::count_messages'. Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
This commit is contained in:
parent
71e1522da4
commit
ed9ef5dc5a
1 changed files with 1 additions and 1 deletions
|
@ -180,5 +180,5 @@ notmuch_rb_query_count_messages (VALUE self)
|
|||
* (function may return 0 after printing a message)
|
||||
* Thus there is nothing we can do here...
|
||||
*/
|
||||
return UINT2FIX(notmuch_query_count_messages(query));
|
||||
return UINT2NUM(notmuch_query_count_messages(query));
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue