From: Charles Keepax Date: Fri, 25 Jan 2013 10:43:11 +0000 (+0000) Subject: compress: Extend limit on error messages X-Git-Tag: v0.1.0~22 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=30b28ff;p=tinycompress.git 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 --- 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;