From aeb16c36b0f77acd10e8228b7e9e5582c9e0d0ee Mon Sep 17 00:00:00 2001 From: "John R. Lenton" Date: Fri, 3 Jan 2014 02:36:35 +0000 Subject: [PATCH] Add a bit of whitespace. --- py/objlist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py/objlist.c b/py/objlist.c index e3596a5c72..31f04f2ce6 100644 --- a/py/objlist.c +++ b/py/objlist.c @@ -55,7 +55,7 @@ static mp_obj_t list_binary_op(int op, mp_obj_t lhs, mp_obj_t rhs) { s->items[i] = o->items[i]; } for (int i = 0; i < p->len; i++) { - s->items[i+o->len] = p->items[i]; + s->items[i + o->len] = p->items[i]; } return s; }