some initializing code

This commit is contained in:
Cheat Engine 2023-12-28 02:18:36 +01:00
parent d7a11fa2f6
commit a9058d8605
2 changed files with 2 additions and 1 deletions

View File

@ -11,6 +11,7 @@
#ifdef _APPLE_
#include "macport.h"
#else
#include <string.h>
#include "linuxport.h"
#endif //_APPLE_
#endif //_WINDOWS

View File

@ -265,7 +265,7 @@ HANDLE CreateNamedPipe(char *name) //createNamedPipe and wait
{
OutputDebugString((char*)"Connection attempt\n");
struct sockaddr_un addr_client;
socklen_t clisize;
socklen_t clisize=sizeof(addr_client);
int a=-1;