summaryrefslogtreecommitdiffstatshomepage
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/natmod/btree/btree_c.c2
-rw-r--r--examples/natmod/framebuf/framebuf.c2
-rw-r--r--examples/natmod/ure/ure.c4
-rw-r--r--examples/natmod/uzlib/uzlib.c2
4 files changed, 5 insertions, 5 deletions
diff --git a/examples/natmod/btree/btree_c.c b/examples/natmod/btree/btree_c.c
index 5e8a34ac40..e342b7d903 100644
--- a/examples/natmod/btree/btree_c.c
+++ b/examples/natmod/btree/btree_c.c
@@ -94,7 +94,7 @@ int mp_stream_posix_fsync(void *stream) {
return res;
}
-mp_obj_type_t btree_type;
+mp_obj_full_type_t btree_type;
#include "extmod/modbtree.c"
diff --git a/examples/natmod/framebuf/framebuf.c b/examples/natmod/framebuf/framebuf.c
index 2eff61c817..98b44987b3 100644
--- a/examples/natmod/framebuf/framebuf.c
+++ b/examples/natmod/framebuf/framebuf.c
@@ -8,7 +8,7 @@ void *memset(void *s, int c, size_t n) {
}
#endif
-mp_obj_type_t mp_type_framebuf;
+mp_obj_full_type_t mp_type_framebuf;
#include "extmod/modframebuf.c"
diff --git a/examples/natmod/ure/ure.c b/examples/natmod/ure/ure.c
index 175b93e395..d9e11760a7 100644
--- a/examples/natmod/ure/ure.c
+++ b/examples/natmod/ure/ure.c
@@ -32,8 +32,8 @@ void *memmove(void *dest, const void *src, size_t n) {
return mp_fun_table.memmove_(dest, src, n);
}
-mp_obj_type_t match_type;
-mp_obj_type_t re_type;
+mp_obj_full_type_t match_type;
+mp_obj_full_type_t re_type;
#include "extmod/modure.c"
diff --git a/examples/natmod/uzlib/uzlib.c b/examples/natmod/uzlib/uzlib.c
index 99b3691761..24ab15d6f1 100644
--- a/examples/natmod/uzlib/uzlib.c
+++ b/examples/natmod/uzlib/uzlib.c
@@ -8,7 +8,7 @@ void *memset(void *s, int c, size_t n) {
}
#endif
-mp_obj_type_t decompio_type;
+mp_obj_full_type_t decompio_type;
#include "extmod/moduzlib.c"