Skip to content

Commit

Permalink
Merge pull request #2 from RelationalAI/npr-use-c-char
Browse files Browse the repository at this point in the history
Use `c_char` not `i8` for error message string
  • Loading branch information
nickrobinson251 authored Jan 8, 2024
2 parents b87c4f4 + ca78c60 commit 7c2c085
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ unsafe impl Sync for AzureCredentials {}
pub struct Response {
result: CResult,
length: usize,
error_message: *mut i8,
error_message: *mut c_char,
}

unsafe impl Send for Response {}
Expand Down

0 comments on commit 7c2c085

Please sign in to comment.