Skip to content

Commit

Permalink
Revert "fix type"
Browse files Browse the repository at this point in the history
This reverts commit 18c9bcc.
  • Loading branch information
johanneskoester committed May 10, 2024
1 parent 18c9bcc commit f73ebc3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bam/record.rs
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,8 @@ impl Record {

let mut sam_string = htslib::kstring_t {
s: sam_copy.as_ptr() as *mut c_char,
l: sam_copy.len(),
m: sam_copy.len(),
l: sam_copy.len() as u64,
m: sam_copy.len() as u64,
};

let succ = unsafe {
Expand Down

0 comments on commit f73ebc3

Please sign in to comment.