Fixed scheme struct strbuff[] size to handle long strings in register blocks

This commit is contained in:
Kevin Cozens
2010-02-13 15:05:02 -05:00
parent 33d66f5c7e
commit 32b7b79c33

View File

@ -123,7 +123,7 @@ char no_memory; /* Whether mem. alloc. has failed */
#define LINESIZE 1024
char linebuff[LINESIZE];
#define STRBUFFSIZE 256
#define STRBUFFSIZE 1024
char strbuff[STRBUFFSIZE];
FILE *tmpfp;