aboutsummaryrefslogtreecommitdiff
path: root/cc3200
diff options
context:
space:
mode:
authorDamien George2015-11-27 12:23:18 +0000
committerDamien George2015-11-29 14:25:04 +0000
commitc3f64d9799cdf8af88087eebe6628e83d658405c (patch)
tree66be85a413d652243c384e43e84a417e40284ff6 /cc3200
parent4e7107a572b55321f3f483f0293dd19b4f752c9b (diff)
py: Change qstr_* functions to use size_t as the type for str len arg.
Diffstat (limited to 'cc3200')
-rw-r--r--cc3200/bootmgr/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cc3200/bootmgr/main.c b/cc3200/bootmgr/main.c
index d5b37c313..97c8b36af 100644
--- a/cc3200/bootmgr/main.c
+++ b/cc3200/bootmgr/main.c
@@ -414,7 +414,7 @@ int main (void) {
//*****************************************************************************
#include "py/qstr.h"
-const byte *qstr_data(qstr q, mp_uint_t *len) {
+const byte *qstr_data(qstr q, size_t *len) {
*len = 0;
return NULL;
}