mirror of
				https://github.com/CPunch/Laika.git
				synced 2025-11-04 12:30:33 +00:00 
			
		
		
		
	removed unused macro
This commit is contained in:
		@@ -10,8 +10,6 @@
 | 
			
		||||
 | 
			
		||||
#include "lconfig.h"
 | 
			
		||||
 | 
			
		||||
#define ARRAY_START 4
 | 
			
		||||
 | 
			
		||||
#ifdef DEBUG
 | 
			
		||||
# define LAIKA_DEBUG(...) printf("[~] " __VA_ARGS__); fflush(stdout);
 | 
			
		||||
#else
 | 
			
		||||
 
 | 
			
		||||
@@ -44,10 +44,10 @@ void laikaS_initSocket(struct sLaika_socket *sock, pollEvent onPollIn, pollEvent
 | 
			
		||||
    sock->onPollOut = onPollOut;
 | 
			
		||||
    sock->uData = uData;
 | 
			
		||||
    sock->inBuf = NULL;
 | 
			
		||||
    sock->inCap = ARRAY_START;
 | 
			
		||||
    sock->inCap = 8;
 | 
			
		||||
    sock->inCount = 0;
 | 
			
		||||
    sock->outBuf = NULL;
 | 
			
		||||
    sock->outCap = ARRAY_START;
 | 
			
		||||
    sock->outCap = 8;
 | 
			
		||||
    sock->outCount = 0;
 | 
			
		||||
    sock->flipEndian = false;
 | 
			
		||||
    sock->setPollOut = false;
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user