summaryrefslogtreecommitdiff
path: root/libavcodec/mlp.h
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2009-01-30 18:38:25 +0000
committerDiego Biurrun <diego@biurrun.de>2009-01-30 18:38:25 +0000
commitdc8a7c93d3381d7336c3dd37956bdb6e88c9eaf9 (patch)
tree83ddfde3d92c1c8ae6384b31a07fc37c13779afd /libavcodec/mlp.h
parentf92a6c66ed2dfb4c421934984b1869b21cb961dc (diff)
Add missing void keyword to parameterless function declarations.
Originally committed as revision 16860 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mlp.h')
-rw-r--r--libavcodec/mlp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mlp.h b/libavcodec/mlp.h
index b81c735d1f..032a8f6bdf 100644
--- a/libavcodec/mlp.h
+++ b/libavcodec/mlp.h
@@ -106,7 +106,7 @@ uint8_t ff_mlp_restart_checksum(const uint8_t *buf, unsigned int bit_size);
*/
uint8_t ff_mlp_calculate_parity(const uint8_t *buf, unsigned int buf_size);
-void ff_mlp_init_crc();
+void ff_mlp_init_crc(void);
/** XOR four bytes into one. */
static inline uint8_t xor_32_to_8(uint32_t value)