summaryrefslogtreecommitdiff
path: root/frontends
diff options
context:
space:
mode:
Diffstat (limited to 'frontends')
-rw-r--r--frontends/monkey/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontends/monkey/main.c b/frontends/monkey/main.c
index 0059ff047..716d1ae1a 100644
--- a/frontends/monkey/main.c
+++ b/frontends/monkey/main.c
@@ -287,7 +287,7 @@ static void monkey_run(void)
default:
LOG("Iterate non-blocking");
- fprintf(stdout, "GENERIC POLL TIMED\n");
+ fprintf(stdout, "GENERIC POLL TIMED %d\n", schedtm);
tv.tv_sec = schedtm / 1000; /* miliseconds to seconds */
tv.tv_usec = (schedtm % 1000) * 1000; /* remainder to microseconds */
timeout = &tv;