From e50cff69bb0dbca8ed363b5c7c459e01cb7f00ac Mon Sep 17 00:00:00 2001 From: stijn Date: Thu, 9 Apr 2015 12:27:15 +0200 Subject: py: Use a dummy type for referring to extern structs Fixes msvc linker warnings about mismatching sizes between the mp_obj_fdfile_t struct defined in file.c and the mp_uint_t declarations found in modsys.c and modbuiltins.c --- py/obj.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'py/obj.c') diff --git a/py/obj.c b/py/obj.c index c376adc03..6c851dfb0 100644 --- a/py/obj.c +++ b/py/obj.c @@ -74,7 +74,7 @@ void mp_obj_print_helper(void (*print)(void *env, const char *fmt, ...), void *e void mp_obj_print(mp_obj_t o_in, mp_print_kind_t kind) { #if MICROPY_PY_IO // defined per port; type of these is irrelevant, just need pointer - extern mp_uint_t mp_sys_stdout_obj; + extern struct _mp_dummy_t mp_sys_stdout_obj; pfenv_t pfenv; pfenv.data = &mp_sys_stdout_obj; pfenv.print_strn = (void (*)(void *, const char *, mp_uint_t))mp_stream_write; -- cgit v1.2.3