From 860ffb0a4365bba62cbd692392375df9fd4a72e7 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Sun, 5 Jan 2014 22:34:09 +0200 Subject: Convert many object types structs to use C99 tagged initializer syntax. --- py/objmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'py/objmodule.c') diff --git a/py/objmodule.c b/py/objmodule.c index 9263eb44f0..2d6f9555e8 100644 --- a/py/objmodule.c +++ b/py/objmodule.c @@ -31,7 +31,7 @@ const mp_obj_type_t module_type = { NULL, // binary_op NULL, // getiter NULL, // iternext - {{NULL, NULL},}, // method list + .methods = {{NULL, NULL},}, }; mp_obj_t mp_obj_new_module(qstr module_name) { -- cgit v1.2.3