summaryrefslogtreecommitdiffstats
path: root/libmpdemux/asf_streaming.c
diff options
context:
space:
mode:
Diffstat (limited to 'libmpdemux/asf_streaming.c')
-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);