mirror of
https://github.com/mpv-player/mpv
synced 2024-12-23 23:32:26 +00:00
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
This commit is contained in:
parent
5eef65aa85
commit
a1e6e85834
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user