From: Luca Abeni Date: Mon, 2 Feb 2009 08:11:50 +0000 (+0100) Subject: Fix silly typo X-Git-Url: http://rtime.felk.cvut.cz/gitweb/frescor/streamer.git/commitdiff_plain/refs/heads/master Fix silly typo --- diff --git a/streamer.c b/streamer.c index 10e7f66..dce1914 100644 --- a/streamer.c +++ b/streamer.c @@ -22,7 +22,7 @@ static void sdp_print(AVFormatContext *s, const char *fname) char sdp[2048]; FILE *f; - f = fopen("fname", "w"); + f = fopen(fname, "w"); avf_sdp_create(&s, 1, sdp, sizeof(sdp)); fprintf(f, "%s\n", sdp); fclose(f);