diff options
| author | Felipe Contreras <felipe.contreras@gmail.com> | 2021-05-04 03:17:40 -0500 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2021-05-12 19:13:02 -0300 |
| commit | 75738758f91ff2f199d598de17100dfb34cf5fe5 (patch) | |
| tree | 36f1bc6c550b077a77559fdd3ca01ff84b3c2059 /bindings/ruby/threads.c | |
| parent | 25da4a13407c0634d5b59fc2e1f3c2fe17db4438 (diff) | |
ruby: add missing Data_Get_Notmuch helpers
Apparently commit 5c9e3855 (ruby: Don't barf if an object is destroyed
more than once, 2010-05-26) missed these two.
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
Diffstat (limited to 'bindings/ruby/threads.c')
| -rw-r--r-- | bindings/ruby/threads.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bindings/ruby/threads.c b/bindings/ruby/threads.c index ed403a8f..5885f565 100644 --- a/bindings/ruby/threads.c +++ b/bindings/ruby/threads.c @@ -30,7 +30,7 @@ notmuch_rb_threads_destroy (VALUE self) { notmuch_threads_t *threads; - Data_Get_Struct (self, notmuch_threads_t, threads); + Data_Get_Notmuch_Threads (self, threads); notmuch_threads_destroy (threads); DATA_PTR (self) = NULL; |
