summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ev.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/ev.pod b/ev.pod
index 0d0ce3e..a892694 100644
--- a/ev.pod
+++ b/ev.pod
@@ -1421,7 +1421,7 @@ within the callback:
// callback was invoked, but there was some activity, re-arm
// the watcher to fire in last_activity + 60, which is
// guaranteed to be in the future, so "again" is positive:
- w->again = timeout - now;
+ w->repeat = timeout - now;
ev_timer_again (EV_A_ w);
}
}