ring buffer: increase buffer size from 128 to 256 to cope with large debug output

This commit is contained in:
Kevin Redon 2018-06-25 15:56:33 +02:00 committed by Harald Welte
parent eac1bec428
commit a9bca48914
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@
#include <stdbool.h>
#include <sys/types.h>
#define RING_BUFLEN 128
#define RING_BUFLEN 256
typedef struct ringbuf {
uint8_t buf[RING_BUFLEN];