From e673c63989832c368242d150c75016778a2aefb3 Mon Sep 17 00:00:00 2001 From: Alex Dowad Date: Fri, 24 Apr 2020 22:37:17 +0200 Subject: [PATCH] Correct comment in plain_wrapper.c (refers to microseconds, not milliseconds) --- main/streams/plain_wrapper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.40.0