Compare commits

..

No commits in common. "e3d2d44e1afffe1012c1cba8db2a082429641631" and "f08ffc782451eeb2437e7835b5b8053ef002673e" have entirely different histories.

2 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@ ifeq ($(DEBUG), 1)
CFLAGS += -Wall -Wextra -Wpedantic
CFLAGS += -DDEBUG -O0 -ggdb -fno-inline
else
CFLAGS += -O3 -fno-stack-protector
CFLAGS += -O3 -fno-stack-protector -fno-rtti
endif
LDLIBS := -lircclient

View File

@ -36,8 +36,8 @@ typedef struct {
char * user;
language_t language;
struct itimerval timer;
char * buffer[128]; // XXX: no overflow detection/avertion
unsigned int buffer_head; // is implemented on this bunch
char * buffer[128];
unsigned int buffer_head;
} request_t;
void init_request(request_t * request) {