Remove redundant log message

This commit is contained in:
Will Storey
2018-07-23 17:32:58 -07:00
parent d4640f77fb
commit 5eadfd6fab

View File

@@ -281,7 +281,6 @@ func openInput(inputFormat, inputURL string, verbose bool) *Input {
input := C.vs_open_input(inputFormatC, inputURLC, C.bool(verbose))
if input == nil {
log.Printf("Unable to open input")
C.free(unsafe.Pointer(inputFormatC))
C.free(unsafe.Pointer(inputURLC))
return nil