diff options
author | John R. Lenton <jlenton@gmail.com> | 2014-01-03 02:36:35 +0000 |
---|---|---|
committer | John R. Lenton <jlenton@gmail.com> | 2014-01-03 02:36:35 +0000 |
commit | aeb16c36b0f77acd10e8228b7e9e5582c9e0d0ee (patch) | |
tree | 5ccce484362c3b4a279dbb7d758db1201e60cc7f /py | |
parent | 81ad89c46e5b53c7a0e91e56f972e43751ddeb3d (diff) | |
download | micropython-aeb16c36b0f77acd10e8228b7e9e5582c9e0d0ee.tar.gz micropython-aeb16c36b0f77acd10e8228b7e9e5582c9e0d0ee.zip |
Add a bit of whitespace.
Diffstat (limited to 'py')
-rw-r--r-- | py/objlist.c | 2 |
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; } |