Skip to content

Commit

Permalink
ffserver: fix wrong indentation
Browse files Browse the repository at this point in the history
Signed-off-by: Reynaldo H. Verdejo Pinochet <[email protected]>
  • Loading branch information
reynaldo committed Feb 15, 2015
1 parent bd8e16f commit df4346c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ffserver.c
Original file line number Diff line number Diff line change
Expand Up @@ -2419,7 +2419,7 @@ static int http_send_data(HTTPContext *c)

/* send everything we can NOW */
len = send(rtsp_c->fd, rtsp_c->packet_buffer_ptr,
rtsp_c->packet_buffer_end - rtsp_c->packet_buffer_ptr, 0);
rtsp_c->packet_buffer_end - rtsp_c->packet_buffer_ptr, 0);
if (len > 0)
rtsp_c->packet_buffer_ptr += len;
if (rtsp_c->packet_buffer_ptr < rtsp_c->packet_buffer_end) {
Expand Down

0 comments on commit df4346c

Please sign in to comment.