# HG changeset patch # User pl # Date 1009280410 0 # Node ID deba2b4fe4b41b26903da5b66e9247877c1a96d1 # Parent 1acf2f1f9dc855da53610ed2c7ddc2b8ceb2d01b 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" diff -r 1acf2f1f9dc8 -r deba2b4fe4b4 libmpdemux/asf_streaming.c --- 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);