diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-09-21 18:44:41 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-12-08 01:01:00 +0100 |
commit | 4dccfff9dd01d6c45731cda21fc6ea0a649d6581 (patch) | |
tree | d0b4cd35ebaa42e8cf048b6196ae44a651877e48 /libavutil | |
parent | 9a5d6c23c5cc25b887f996d55f96dfbacf760e88 (diff) | |
download | ffmpeg-4dccfff9dd01d6c45731cda21fc6ea0a649d6581.tar.gz |
tests/examples: Mark some variables only used within their files as static.
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/adler32.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libavutil/adler32.c b/libavutil/adler32.c index 9d3d896506..7f5afdbc40 100644 --- a/libavutil/adler32.c +++ b/libavutil/adler32.c @@ -60,7 +60,9 @@ unsigned long av_adler32_update(unsigned long adler, const uint8_t * buf, #include "log.h" #include "timer.h" #define LEN 7001 -volatile int checksum; + +static volatile int checksum; + int main(int argc, char **argv) { int i; |