py: Small cleanup in stream.c.

This commit is contained in:
Damien George 2014-08-22 18:30:02 +01:00
parent d5e7f6e37e
commit 69b7dae362

View File

@ -225,8 +225,7 @@ STATIC mp_obj_t stream_readall(mp_obj_t self_in) {
int total_size = 0;
vstr_t *vstr = vstr_new_size(DEFAULT_BUFFER_SIZE);
char *buf = vstr_str(vstr);
char *p = buf;
char *p = vstr_str(vstr);
int error;
int current_read = DEFAULT_BUFFER_SIZE;
while (true) {