Skip to content
Snippets Groups Projects
Commit 0d1f8868 authored by Damien George's avatar Damien George
Browse files

py: For mp_buffer_info_t, change len type from mp_uint_t to size_t.

parent 77f85db4
No related branches found
No related tags found
No related merge requests found
...@@ -425,7 +425,7 @@ typedef struct _mp_buffer_info_t { ...@@ -425,7 +425,7 @@ typedef struct _mp_buffer_info_t {
//int ver; // ? //int ver; // ?
void *buf; // can be NULL if len == 0 void *buf; // can be NULL if len == 0
mp_uint_t len; // in bytes size_t len; // in bytes
int typecode; // as per binary.h int typecode; // as per binary.h
// Rationale: to load arbitrary-sized sprites directly to LCD // Rationale: to load arbitrary-sized sprites directly to LCD
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment