From dc8a7c93d3381d7336c3dd37956bdb6e88c9eaf9 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Fri, 30 Jan 2009 18:38:25 +0000 Subject: Add missing void keyword to parameterless function declarations. Originally committed as revision 16860 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/mlp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/mlp.c') diff --git a/libavcodec/mlp.c b/libavcodec/mlp.c index 6f10c3535e..c522617e0b 100644 --- a/libavcodec/mlp.c +++ b/libavcodec/mlp.c @@ -46,7 +46,7 @@ static AVCRC crc_63[1024]; static AVCRC crc_1D[1024]; static AVCRC crc_2D[1024]; -void av_cold ff_mlp_init_crc() +av_cold void ff_mlp_init_crc(void) { if (!crc_init) { av_crc_init(crc_63, 0, 8, 0x63, sizeof(crc_63)); -- cgit v1.2.3