Skip to content

Commit

Permalink
Fix typo in query_closure.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
sashacmc committed Dec 23, 2024
1 parent 0fccd7b commit 43fce38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/closures/query_closure.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ use crate::{
#[repr(C)]
pub struct z_owned_closure_query_t {
pub _context: *mut c_void,
pub _call: Option<extern "C" fn(reply: &mut z_loaned_query_t, context: *mut c_void)>,
pub _call: Option<extern "C" fn(query: &mut z_loaned_query_t, context: *mut c_void)>,
pub _drop: Option<extern "C" fn(context: *mut c_void)>,
}

Expand Down

0 comments on commit 43fce38

Please sign in to comment.