fix exit_program() prototypes

This fixes 2 warnings

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2012-10-02 21:55:17 +02:00
parent 032ba74ed2
commit 8f0168a3b9
2 changed files with 2 additions and 2 deletions

View File

@ -378,7 +378,7 @@ static int decode_interrupt_cb(void *ctx)
const AVIOInterruptCB int_cb = { decode_interrupt_cb, NULL };
static void exit_program()
static void exit_program(void)
{
int i, j;

View File

@ -141,7 +141,7 @@ static const char unit_bit_per_second_str[] = "bit/s";
static uint64_t *nb_streams_packets;
static uint64_t *nb_streams_frames;
static void exit_program()
static void exit_program(void)
{
av_dict_free(&fmt_entries_to_show);
}