From c7dceafd67f53a72213afd37ddac5bd9ee8ff78b Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Thu, 14 Apr 2016 12:42:47 -0400 Subject: [PATCH] fix first param to zm_dump_stream_format --- src/zm_videostore.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/zm_videostore.cpp b/src/zm_videostore.cpp index 778b6d42d..17825e710 100644 --- a/src/zm_videostore.cpp +++ b/src/zm_videostore.cpp @@ -118,7 +118,7 @@ VideoStore::VideoStore(const char *filename_in, const char *format_in, /* Write the stream header, if any. */ ret = avformat_write_header(oc, NULL); if (ret < 0) { -zm_dump_stream_format(AVFormatContext *oc, 0, 0, 1 ); +zm_dump_stream_format( oc, 0, 0, 1 ); Fatal("Error occurred when writing output file header to %s: %s\n", filename, av_make_error_string(ret).c_str());