Browse Source

Reindent

Originally committed as revision 23534 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/n0.8
Martin Storsjö 15 years ago
parent
commit
e4f28e0890
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/http.c

+ 1
- 1
libavformat/http.c View File

@@ -440,7 +440,7 @@ static int http_write(URLContext *h, const uint8_t *buf, int size)
if (size > 0) {
/* upload data using chunked encoding */
if(s->is_chunked) {
snprintf(temp, sizeof(temp), "%x\r\n", size);
snprintf(temp, sizeof(temp), "%x\r\n", size);
if ((ret = url_write(s->hd, temp, strlen(temp))) < 0)
return ret;
}


Loading…
Cancel
Save