summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpl <pl@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-12-25 11:40:10 +0000
committerpl <pl@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-12-25 11:40:10 +0000
commita1e6e858348ead8b71be205159f0d859158f1a4a (patch)
tree80d604a5762f76f8140f421628e6a7aa09282afa
parent5eef65aa85c53f3be57a2031e13af4179f0d6fcc (diff)
downloadmpv-a1e6e858348ead8b71be205159f0d859158f1a4a.tar.bz2
mpv-a1e6e858348ead8b71be205159f0d859158f1a4a.tar.xz
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" git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3728 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r--libmpdemux/asf_streaming.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libmpdemux/asf_streaming.c b/libmpdemux/asf_streaming.c
index 12db10bde1..4d864c8e6d 100644
--- a/libmpdemux/asf_streaming.c
+++ b/libmpdemux/asf_streaming.c
@@ -411,7 +411,7 @@ asf_http_request(streaming_ctrl_t *streaming_ctrl) {
}
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 @@ asf_http_request(streaming_ctrl_t *streaming_ctrl) {
}
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);