summaryrefslogtreecommitdiffstatshomepage
path: root/py
diff options
context:
space:
mode:
authorJohn R. Lenton <jlenton@gmail.com>2014-01-03 02:36:35 +0000
committerJohn R. Lenton <jlenton@gmail.com>2014-01-03 02:36:35 +0000
commitaeb16c36b0f77acd10e8228b7e9e5582c9e0d0ee (patch)
tree5ccce484362c3b4a279dbb7d758db1201e60cc7f /py
parent81ad89c46e5b53c7a0e91e56f972e43751ddeb3d (diff)
downloadmicropython-aeb16c36b0f77acd10e8228b7e9e5582c9e0d0ee.tar.gz
micropython-aeb16c36b0f77acd10e8228b7e9e5582c9e0d0ee.zip
Add a bit of whitespace.
Diffstat (limited to 'py')
-rw-r--r--py/objlist.c2
1 files changed, 1 insertions, 1 deletions
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;
}