Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libavutil/crc.c')
-rw-r--r--libavutil/crc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavutil/crc.c b/libavutil/crc.c
index b715a6558d..1de67a6ad1 100644
--- a/libavutil/crc.c
+++ b/libavutil/crc.c
@@ -130,7 +130,7 @@ uint32_t av_crc(const AVCRC *ctx, uint32_t crc, const uint8_t *buffer, size_t le
#ifdef TEST
#undef printf
-main(void){
+int main(void){
uint8_t buf[1999];
int i;
int p[4][3]={{AV_CRC_32_IEEE_LE, 0xEDB88320, 0x3D5CDD04},
@@ -146,5 +146,6 @@ main(void){
ctx = av_crc_get_table(p[i][0]);
printf("crc %08X =%X\n", p[i][1], av_crc(ctx, 0, buf, sizeof(buf)));
}
+ return 0;
}
#endif