Skip to content

Commit 0097ea6

Browse files
authored
Fixed int to nint that I had missed
1 parent 5846295 commit 0097ea6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

crates/csharp/src/function.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -892,7 +892,7 @@ impl Bindgen for FunctionBindgen<'_, '_> {
892892
"
893893
);
894894
}
895-
results.push(format!("(int){ptr}"));
895+
results.push(format!("(nint){ptr}"));
896896
results.push(format!("({list}).Length"));
897897
}
898898
Direction::Export => {

0 commit comments

Comments
 (0)