Skip to content

Commit

Permalink
Avoid "[mixed] shared declaration" warning [trivial]
Browse files Browse the repository at this point in the history
  • Loading branch information
jmarshall committed Oct 5, 2024
1 parent 4bde386 commit 587bff2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pysam/libcalignedsegment.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -757,7 +757,8 @@ cdef inline bytes build_alignment_sequence(bam1_t * src):
elif op == BAM_CHARD_CLIP:
pass # advances neither

cdef char *md_tag, md_buffer[2];
cdef char md_buffer[2]
cdef char *md_tag
cdef uint8_t md_typecode = md_tag_ptr[0]
if md_typecode == b'Z':
md_tag = bam_aux2Z(md_tag_ptr)
Expand Down

0 comments on commit 587bff2

Please sign in to comment.