Skip to content
Snippets Groups Projects
Commit 69b7dae3 authored by Damien George's avatar Damien George
Browse files

py: Small cleanup in stream.c.

parent d5e7f6e3
No related branches found
No related tags found
No related merge requests found
......@@ -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) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment