Merge commit 'e89cef40506d990a982aefedfde7d3ca4f88c524'

* commit 'e89cef40506d990a982aefedfde7d3ca4f88c524':
  checkasm: Read the unsigned value as it should

Merged-by: Clément Bœsch <u@pkh.me>
This commit is contained in:
Clément Bœsch 2017-03-20 11:55:20 +01:00
commit 3c8f7a8f6b
1 changed files with 3 additions and 2 deletions

View File

@ -502,7 +502,8 @@ static void print_cpu_name(void)
int main(int argc, char *argv[])
{
int i, seed, ret = 0;
unsigned int seed;
int i, ret = 0;
#if ARCH_ARM && HAVE_ARMV5TE_EXTERNAL
if (have_vfp(av_get_cpu_flags()) || have_neon(av_get_cpu_flags()))
@ -529,7 +530,7 @@ int main(int argc, char *argv[])
argv++;
}
seed = (argc > 1) ? atoi(argv[1]) : av_get_random_seed();
seed = (argc > 1) ? strtoul(argv[1], NULL, 10) : av_get_random_seed();
fprintf(stderr, "checkasm: using random seed %u\n", seed);
av_lfg_init(&checkasm_lfg, seed);