Add cast for mpy-cross warning

This commit is contained in:
Scott Shawcroft 2020-07-17 17:55:06 -07:00
parent 4b157aa6b8
commit f38a9c8d29
No known key found for this signature in database
GPG Key ID: 9349BC7E64B1921E
1 changed files with 2 additions and 2 deletions

View File

@ -419,12 +419,12 @@ STATIC mp_obj_t buffer_finder(size_t n_args, const mp_obj_t *args, int direction
}
const byte *start = haystack_bufinfo.buf;
const byte *end = haystack_bufinfo.buf + haystack_bufinfo.len;
const byte *end = ((const byte*)haystack_bufinfo.buf) + haystack_bufinfo.len;
if (n_args >= 3 && args[2] != mp_const_none) {
start += mp_get_index(self_type, haystack_bufinfo.len, args[2], true);
}
if (n_args >= 4 && args[3] != mp_const_none) {
end = haystack_bufinfo.buf + mp_get_index(self_type, haystack_bufinfo.len, args[3], true);
end = ((const byte*)haystack_bufinfo.buf) + mp_get_index(self_type, haystack_bufinfo.len, args[3], true);
}
const byte *p = NULL;