mirror of
https://github.com/CPunch/Laika.git
synced 2024-11-21 12:40:04 +00:00
removed unused macro
This commit is contained in:
parent
ead2f08c87
commit
67f404dac6
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user