diff options
author | lonkaars <loek@pipeframe.xyz> | 2022-05-29 22:35:04 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2022-05-29 22:35:04 +0200 |
commit | 555e5d2c0ce77dd1e031690c98ec9a1366182347 (patch) | |
tree | 69a505a23ae6ca5d0951e8f832f9895fcbb88b83 /robot/hypervisor.c | |
parent | 87d8b0ceb349e101b693cf43336a98647f4b92dc (diff) |
`make format`
Diffstat (limited to 'robot/hypervisor.c')
-rw-r--r-- | robot/hypervisor.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/robot/hypervisor.c b/robot/hypervisor.c index 3359bf6..4f994a8 100644 --- a/robot/hypervisor.c +++ b/robot/hypervisor.c @@ -1,6 +1,6 @@ #include "hypervisor.h" -#include "../shared/util.h" #include "../shared/errcatch.h" +#include "../shared/util.h" #include "io.h" #include "modes.h" #include "orangutan_shim.h" @@ -46,8 +46,7 @@ void w2_hypervisor_main() { if (DBG_ENABLE_CYCLEINFO) siminfo("cycle end\n"); if (DBG_CYCLE_DELAY > 0) usleep(DBG_CYCLE_DELAY); - if (DBG_MAX_CYCLES > -1 && g_w2_hypervisor_cycles > DBG_MAX_CYCLES) - exit(0); + if (DBG_MAX_CYCLES > -1 && g_w2_hypervisor_cycles > DBG_MAX_CYCLES) exit(0); #endif g_w2_hypervisor_cycles++; |