Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReynaldo H. Verdejo Pinochet <r.verdejo@sisa.samsung.com>2014-02-13 09:37:39 +0400
committerReynaldo H. Verdejo Pinochet <r.verdejo@sisa.samsung.com>2014-02-14 21:31:41 +0400
commit5df2a502f2147c16b6151e8c36ddd682b91ac8ea (patch)
tree43a29ff55f1f70f9ec2295c1c6c65816faaf88b3 /ffserver.c
parent1ffac25d31eb4aa7dd8680dbc5ae132007796e98 (diff)
ffserver: avoid useless substitution
Signed-off-by: Reynaldo H. Verdejo Pinochet <r.verdejo@sisa.samsung.com>
Diffstat (limited to 'ffserver.c')
-rw-r--r--ffserver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffserver.c b/ffserver.c
index 00b4857cf4..d57aa315f5 100644
--- a/ffserver.c
+++ b/ffserver.c
@@ -1943,7 +1943,7 @@ static void compute_status(HTTPContext *c)
}
avio_printf(pb, "HTTP/1.0 200 OK\r\n");
- avio_printf(pb, "Content-type: %s\r\n", "text/html");
+ avio_printf(pb, "Content-type: text/html\r\n");
avio_printf(pb, "Pragma: no-cache\r\n");
avio_printf(pb, "\r\n");