aboutsummaryrefslogtreecommitdiffstats
path: root/executor/common_fuchsia.h
diff options
context:
space:
mode:
Diffstat (limited to 'executor/common_fuchsia.h')
-rw-r--r--executor/common_fuchsia.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/executor/common_fuchsia.h b/executor/common_fuchsia.h
index f8fa8ffec..2d76891da 100644
--- a/executor/common_fuchsia.h
+++ b/executor/common_fuchsia.h
@@ -245,8 +245,7 @@ static long syz_job_default(void)
#if SYZ_EXECUTOR || __NR_syz_future_time
static long syz_future_time(volatile long when)
{
- zx_time_t delta_ms;
- zx_time_t now;
+ zx_time_t delta_ms = 10000;
switch (when) {
case 0:
delta_ms = 5;
@@ -254,10 +253,8 @@ static long syz_future_time(volatile long when)
case 1:
delta_ms = 30;
break;
- default:
- delta_ms = 10000;
- break;
}
+ zx_time_t now = 0;
zx_clock_get(ZX_CLOCK_MONOTONIC, &now);
return now + delta_ms * 1000 * 1000;
}