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 += -Wall -Wextra -Wpedantic
CFLAGS += -DDEBUG -O0 -ggdb -fno-inline CFLAGS += -DDEBUG -O0 -ggdb -fno-inline
else else
CFLAGS += -O3 -fno-stack-protector CFLAGS += -O3 -fno-stack-protector -fno-rtti
endif endif
LDLIBS := -lircclient LDLIBS := -lircclient

View File

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