25 Jan
2013
25 Jan
'13
12:43 p.m.
32 characters is a very short size for the error message, extend this to 128 characters to prevent clipping on the majority of messages.
Signed-off-by: Charles Keepax ckeepax@opensource.wolfsonmicro.com
diff --git a/compress.c b/compress.c index faef982..05e54ae 100644 --- a/compress.c +++ b/compress.c @@ -75,7 +75,7 @@ #include "sound/compress_offload.h" #include "tinycompress/tinycompress.h"
-#define COMPR_ERR_MAX 32 +#define COMPR_ERR_MAX 128
struct compress { int fd;
--
1.7.2.5