Fixed `UV_THREADPOOL_SIZE` setting

putenv can't use stack buffer
pull/271/head
SChernykh 2023-05-23 19:14:15 +02:00
parent eab8a51bb7
commit cd57ab6ad9
1 changed files with 1 additions and 1 deletions

View File

@ -174,7 +174,7 @@ private:
const uint32_t N = std::min(std::max(std::thread::hardware_concurrency(), 4U), 8U);
char buf[40] = {};
static char buf[40] = {};
log::Stream s(buf);
s << "UV_THREADPOOL_SIZE=" << N << '\0';