From 4da52e3630343e8d3a79aef2cafcb6bf0b71e8da Mon Sep 17 00:00:00 2001 From: Hendrik Leppkes Date: Wed, 21 Oct 2015 12:50:44 +0200 Subject: aacdec: fix strict prototype warning Function protoypes without arguments require a void argument in C, instead of an empty list. --- libavcodec/aacdec_template.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/aacdec_template.c') diff --git a/libavcodec/aacdec_template.c b/libavcodec/aacdec_template.c index aabd3f01d7..c279510ed1 100644 --- a/libavcodec/aacdec_template.c +++ b/libavcodec/aacdec_template.c @@ -1065,7 +1065,7 @@ static void reset_predictor_group(PredictorState *ps, int group_num) static void aacdec_init(AACContext *ac); -static av_cold void aac_static_table_init() +static av_cold void aac_static_table_init(void) { AAC_INIT_VLC_STATIC( 0, 304); AAC_INIT_VLC_STATIC( 1, 270); -- cgit v1.2.3