Skip to content

Commit e673c63

Browse files
committed
Correct comment in plain_wrapper.c (refers to microseconds, not milliseconds)
1 parent 7b4179e commit e673c63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main/streams/plain_wrapper.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ static ssize_t php_stdiop_read(php_stream *stream, char *buf, size_t count)
392392
if (!PeekNamedPipe(ph, NULL, 0, NULL, &avail_read, NULL)) {
393393
break;
394394
}
395-
/* If there's nothing to read, wait in 10ms periods. */
395+
/* If there's nothing to read, wait in 10us periods. */
396396
if (0 == avail_read) {
397397
usleep(10);
398398
}

0 commit comments

Comments
 (0)