From: vrokas Date: Fri, 8 Apr 2005 06:11:00 +0000 (+0000) Subject: * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128 X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=ab61a25b6df502c75e0e7bf1ea0f2ae29390086a;p=fw%2Fsdcc * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128 bytes git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@3726 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/ChangeLog b/ChangeLog index 9cac5f0b..f264b01f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-04-08 Vangelis Rokas + + * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128 + bytes + 2005-04-07 Raphael Neider * device/include/pic16/usart.h: added compatibility defines for diff --git a/src/pic16/pcode.c b/src/pic16/pcode.c index 79f6d152..4002ac44 100644 --- a/src/pic16/pcode.c +++ b/src/pic16/pcode.c @@ -4841,7 +4841,7 @@ char *pic16_get_op(pCodeOp *pcop,char *buffer, size_t size) char *pic16_get_op2(pCodeOp *pcop,char *buffer, size_t size) { regs *r; - static char b[50]; + static char b[128]; char *s; int use_buffer = 1; // copy the string to the passed buffer pointer