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/objboundmeth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'py/objboundmeth.c') diff --git a/py/objboundmeth.c b/py/objboundmeth.c index 264c2effd..4e6d2e010 100644 --- a/py/objboundmeth.c +++ b/py/objboundmeth.c @@ -43,7 +43,7 @@ const mp_obj_type_t bound_meth_type = { NULL, // binary_op NULL, // getiter NULL, // iternext - {{NULL, NULL},}, // method list + .methods = {{NULL, NULL},}, }; mp_obj_t mp_obj_new_bound_meth(mp_obj_t self, mp_obj_t meth) { -- cgit v1.2.3