Mercurial > mplayer.hg
changeset 3727:deba2b4fe4b4
As nobody fixed this yet:
"asf_streaming.c: In function asf_http_request':
asf_streaming.c:414: warning: too few arguments for format
asf_streaming.c:431: warning: too few arguments for format"
author | pl |
---|---|
date | Tue, 25 Dec 2001 11:40:10 +0000 |
parents | 1acf2f1f9dc8 |
children | 499ce786c30d |
files | libmpdemux/asf_streaming.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/libmpdemux/asf_streaming.c Tue Dec 25 11:20:58 2001 +0000 +++ b/libmpdemux/asf_streaming.c Tue Dec 25 11:40:10 2001 +0000 @@ -411,7 +411,7 @@ } if(as < 0) { if(audio_id > 0) - printf("Audio stream %d don't exist\n"); + printf("Audio stream %d don't exist\n", as); as = asf_http_ctrl->audio_streams[0]; } ptr += sprintf(ptr, " ffff:%d:0",as); @@ -428,7 +428,7 @@ } if(vs < 0) { if(video_id > 0) - printf("Video stream %d don't exist\n"); + printf("Video stream %d don't exist\n",vs); vs = asf_http_ctrl->video_streams[0]; } ptr += sprintf( ptr, " ffff:%d:0",vs);