mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-01-09 04:08:16 +08:00
Disable stdout buffering for qbt-nox
The messages printed out via stdout is usually important and short so there is no reason to buffer them. Closes #19984. PR #20018.
This commit is contained in:
parent
9fde5634f1
commit
c165131c3f
@ -104,6 +104,10 @@ void adjustFileDescriptorLimit();
|
||||
// Main
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
#ifdef DISABLE_GUI
|
||||
setvbuf(stdout, nullptr, _IONBF, 0);
|
||||
#endif
|
||||
|
||||
#ifdef Q_OS_UNIX
|
||||
adjustFileDescriptorLimit();
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user