From: Alex Dowad Date: Fri, 24 Apr 2020 20:37:17 +0000 (+0200) Subject: Correct comment in plain_wrapper.c (refers to microseconds, not milliseconds) X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e673c63989832c368242d150c75016778a2aefb3;p=php Correct comment in plain_wrapper.c (refers to microseconds, not milliseconds) --- diff --git a/main/streams/plain_wrapper.c b/main/streams/plain_wrapper.c index b855fe9db9..34d0590f44 100644 --- a/main/streams/plain_wrapper.c +++ b/main/streams/plain_wrapper.c @@ -392,7 +392,7 @@ static ssize_t php_stdiop_read(php_stream *stream, char *buf, size_t count) if (!PeekNamedPipe(ph, NULL, 0, NULL, &avail_read, NULL)) { break; } - /* If there's nothing to read, wait in 10ms periods. */ + /* If there's nothing to read, wait in 10us periods. */ if (0 == avail_read) { usleep(10); }