mirror of
https://github.com/danog/amp.git
synced 2024-11-30 04:29:08 +01:00
Fix incorrect additional increment
This commit is contained in:
parent
489e357348
commit
ed6084c333
@ -45,7 +45,7 @@ class NativeReactor implements Reactor {
|
||||
case Watcher::TIMER_REPEAT:
|
||||
if ($watcher->isEnabled) { $timers++; } else { $disabled++; }
|
||||
break;
|
||||
case Watcher::IO_READER: $readers++;
|
||||
case Watcher::IO_READER:
|
||||
if ($watcher->isEnabled) { $readers++; } else { $disabled++; }
|
||||
break;
|
||||
case Watcher::IO_WRITER:
|
||||
|
Loading…
Reference in New Issue
Block a user