2
0
mirror of https://github.com/FWGS/xash3d-fwgs synced 2024-11-25 11:19:59 +01:00

sys_linux.c: Increase buffer size for /proc/self/status

Fixes #263
This commit is contained in:
Gleb Mazovetskiy 2021-01-02 00:11:54 +00:00 committed by Alibek Omarov
parent 2106eef4b2
commit 33ba1f25f3

View File

@ -36,7 +36,7 @@ void Platform_Sleep( int msec )
qboolean Sys_DebuggerPresent( void )
{
char buf[1024];
char buf[4096];
ssize_t num_read;
int status_fd;