Skip to content
Snippets Groups Projects
Commit 196bc03a authored by Reynaldo H. Verdejo Pinochet's avatar Reynaldo H. Verdejo Pinochet
Browse files

ffserver: drop redundant else clause

parent 9e55130a
No related branches found
No related tags found
No related merge requests found
...@@ -2435,8 +2435,8 @@ static int http_send_data(HTTPContext *c) ...@@ -2435,8 +2435,8 @@ static int http_send_data(HTTPContext *c)
return -1; return -1;
else else
return 0; return 0;
} else }
c->buffer_ptr += len; c->buffer_ptr += len;
c->data_count += len; c->data_count += len;
update_datarate(&c->datarate, c->data_count); update_datarate(&c->datarate, c->data_count);
......
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