Add a bit of whitespace.

This commit is contained in:
John R. Lenton 2014-01-03 02:36:35 +00:00
parent 81ad89c46e
commit aeb16c36b0
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}