Skip to content
Snippets Groups Projects
Commit a9faa952 authored by Martin Larralde's avatar Martin Larralde
Browse files

Explicitly cast a void pointer as `char*` before doing arithmetic

parent b7c4913b
No related branches found
No related tags found
No related merge requests found
......@@ -628,7 +628,7 @@ cdef class Mapper(_Parameterized):
map,
# start of the i-th fragment
kind,
data + (i * param.minReadLength) * stride,
<const void*> ((<const char*> data) + (i * param.minReadLength) * stride),
param.minReadLength,
# outputs
query,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment