summaryrefslogtreecommitdiff
path: root/avprobe.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2012-10-03 16:20:41 +0200
committerDiego Biurrun <diego@biurrun.de>2012-10-03 18:07:49 +0200
commit8be5b0d6d52d0308bfa99218e8f4f9436498d92a (patch)
tree9b02b98db396a62371f790740956cd0230ab0815 /avprobe.c
parent05e209c04ceda37c9a6921f17955c841b93419a2 (diff)
avconv/avprobe: Add missing 'void' to exit_program() definition
Diffstat (limited to 'avprobe.c')
-rw-r--r--avprobe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/avprobe.c b/avprobe.c
index 8bc2a21459..c9bcee27e9 100644
--- a/avprobe.c
+++ b/avprobe.c
@@ -59,7 +59,7 @@ static const char unit_hertz_str[] = "Hz" ;
static const char unit_byte_str[] = "byte" ;
static const char unit_bit_per_second_str[] = "bit/s";
-static void exit_program()
+static void exit_program(void)
{
av_dict_free(&fmt_entries_to_show);
}