remove unnecessary type-casts

This commit is contained in:
Jan Nijtmans 2019-11-12 14:44:39 +01:00 committed by Steffen Jaeckel
parent a91eb5a0d9
commit e9d54e9867
No known key found for this signature in database
GPG Key ID: AF0CB17621EDAD72

View File

@ -223,9 +223,9 @@ static int test_mp_get_set_i64(void)
DOR(mp_init(&a));
check_get_set_i64(&a, (int64_t)0);
check_get_set_i64(&a, (int64_t)-1);
check_get_set_i64(&a, (int64_t)1);
check_get_set_i64(&a, 0);
check_get_set_i64(&a, -1);
check_get_set_i64(&a, 1);
check_get_set_i64(&a, INT64_MIN);
check_get_set_i64(&a, INT64_MAX);