extmod/modbtree: Make FILEVTABLE const to put it in ROM.

pull/1/head
Damien George 2019-11-01 17:25:40 +11:00
parent 32eae53fbc
commit 2ee9e1a4ed
1 changed files with 1 additions and 1 deletions

View File

@ -320,7 +320,7 @@ STATIC const mp_obj_type_t btree_type = {
.locals_dict = (void*)&btree_locals_dict,
};
STATIC FILEVTABLE btree_stream_fvtable = {
STATIC const FILEVTABLE btree_stream_fvtable = {
mp_stream_posix_read,
mp_stream_posix_write,
mp_stream_posix_lseek,