From 30b28ff81ad469be974de2f5ba34fdddd99ca5e8 Mon Sep 17 00:00:00 2001 From: Charles Keepax Date: Fri, 25 Jan 2013 10:43:11 +0000 Subject: [PATCH] compress: Extend limit on error messages 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 Signed-off-by: Vinod Koul --- compress.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.47.3