From: Alexander Traud Date: Thu, 29 Oct 2020 13:59:48 +0000 (+0100) Subject: Compiler fixes for GCC with -Os X-Git-Tag: 18.1.0-rc1~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2dacadd9dfca2b1ef1fca52f4dbd69968cbf2783;p=thirdparty%2Fasterisk.git Compiler fixes for GCC with -Os ASTERISK-29145 Change-Id: I9af705f2b9725c53141aef5d0ff512a1800f073c --- diff --git a/utils/muted.c b/utils/muted.c index a14845fdd7..87a678f311 100644 --- a/utils/muted.c +++ b/utils/muted.c @@ -123,7 +123,7 @@ static void add_channel(char *tech, char *location) static int load_config(void) { FILE *f; - char buf[1024]; + char buf[256]; char *val; char *val2; int lineno=0;