avutil/tests/adler32: Remove unnecessary volatile

And use an ordinary stack variable.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt 2022-01-23 11:20:50 +01:00
parent f0a7db12a2
commit 98cef1ebbe
1 changed files with 1 additions and 2 deletions

View File

@ -27,12 +27,11 @@
#define LEN 7001
static volatile int checksum;
int main(int argc, char **argv)
{
int i;
uint8_t data[LEN];
AVAdler checksum;
av_log_set_level(AV_LOG_DEBUG);