diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-11-23 00:52:56 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-11-23 00:52:56 +0000 |
commit | f8a80fd69df1735730f1b3c7f37506ffe0570d0d (patch) | |
tree | 595a12a7570060b9c2dc3afea7d48d390279199d /libavcodec/eval.c | |
parent | 541432c3b734a0aa62dea9af2e4fc6dbf65036ff (diff) | |
download | ffmpeg-f8a80fd69df1735730f1b3c7f37506ffe0570d0d.tar.gz |
main() --> main(void)
Originally committed as revision 11079 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/eval.c')
-rw-r--r-- | libavcodec/eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/eval.c b/libavcodec/eval.c index b82c7b415f..e6394c39c1 100644 --- a/libavcodec/eval.c +++ b/libavcodec/eval.c @@ -451,7 +451,7 @@ static const char *const_names[]={ "E", 0 }; -main(){ +main(void){ int i; printf("%f == 12.7\n", ff_eval("1+(5-2)^(3-1)+1/2+sin(PI)-max(-2.2,-3.1)", const_values, const_names, NULL, NULL, NULL, NULL, NULL)); printf("%f == 0.931322575\n", ff_eval("80G/80Gi", const_values, const_names, NULL, NULL, NULL, NULL, NULL)); |