Skip to content

Commit

Permalink
fix exit_program() prototypes
Browse files Browse the repository at this point in the history
This fixes 2 warnings

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
  • Loading branch information
michaelni committed Oct 2, 2012
1 parent 032ba74 commit 8f0168a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ffmpeg.c
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion ffprobe.c
Expand Up @@ -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);
}
Expand Down

0 comments on commit 8f0168a

Please sign in to comment.