aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ui/daemon/ui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/daemon/ui.c b/ui/daemon/ui.c
index 93f088f..2417788 100644
--- a/ui/daemon/ui.c
+++ b/ui/daemon/ui.c
@@ -28,7 +28,7 @@ void step_block(void) {
float secs = (float)(end - beg) / (float)CLOCKS_PER_SEC;
float steps_per_sec = (float)g_step_block / secs;
- log_info("Simulator running on step %#lx @%.1f steps/s", g_steps, steps_per_sec);
+ log_info("Simulator running on step %#lx @%#lxf steps/s", g_steps, (int)steps_per_sec);
}
int main(void) {