diff options
author | jstebbins <[email protected]> | 2013-08-16 01:51:31 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2013-08-16 01:51:31 +0000 |
commit | 241721afd7d6faac29b7c1a1d634bb5a07484e53 (patch) | |
tree | 8f0e3c5ea075d0c511f37fbc1ba6a1cc901b225b /libhb/muxavformat.c | |
parent | 74e5b86021afc3b7ec2e002c10dcf0d71f649061 (diff) |
libhb: log avio_open2 error return code
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5701 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/muxavformat.c')
-rw-r--r-- | libhb/muxavformat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/muxavformat.c b/libhb/muxavformat.c index 7053c6dc6..767e8d314 100644 --- a/libhb/muxavformat.c +++ b/libhb/muxavformat.c @@ -181,7 +181,7 @@ static int avformatInit( hb_mux_object_t * m ) &m->oc->interrupt_callback, NULL); if( ret < 0 ) { - hb_error( "avio_open2 failed!"); + hb_error( "avio_open2 failed, errno %d", ret); goto error; } |