afl-gotcpu.c: compielr warning fixed: initialize variable v2

This commit is contained in:
hexcoder-
2020-03-21 19:13:39 +01:00
parent 6cbd0f1faf
commit f18dbb0b40

View File

@ -90,7 +90,7 @@ static u64 get_cpu_usage_us(void) {
static u32 measure_preemption(u32 target_ms) {
volatile u32 v1, v2;
volatile u32 v1, v2 = 0;
u64 st_t, en_t, st_c, en_c, real_delta, slice_delta;
s32 loop_repeats = 0;