diff options
author | Waldemar Celes <celes@tecgraf.puc-rio.br> | 1994-10-13 16:28:54 -0300 |
---|---|---|
committer | Waldemar Celes <celes@tecgraf.puc-rio.br> | 1994-10-13 16:28:54 -0300 |
commit | fca10c67335d4911b78d4ce2ca3083063ff677d4 (patch) | |
tree | b3f455ba76e04b38fbfa496585e58d167c3f63fb | |
parent | 6bc68d464523932a4319f34810fd3f2a3db1dc7d (diff) | |
download | lua-fca10c67335d4911b78d4ce2ca3083063ff677d4.tar.gz lua-fca10c67335d4911b78d4ce2ca3083063ff677d4.tar.bz2 lua-fca10c67335d4911b78d4ce2ca3083063ff677d4.zip |
Aumentar buffer para saida.
-rw-r--r-- | iolib.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3,7 +3,7 @@ | |||
3 | ** Input/output library to LUA | 3 | ** Input/output library to LUA |
4 | */ | 4 | */ |
5 | 5 | ||
6 | char *rcs_iolib="$Id: iolib.c,v 1.10 1994/10/07 22:47:05 celes Exp celes $"; | 6 | char *rcs_iolib="$Id: iolib.c,v 1.11 1994/10/13 17:18:32 celes Exp celes $"; |
7 | 7 | ||
8 | #include <stdlib.h> | 8 | #include <stdlib.h> |
9 | #include <string.h> | 9 | #include <string.h> |
@@ -374,7 +374,7 @@ static void io_readuntil (void) | |||
374 | */ | 374 | */ |
375 | static char *buildformat (char *e, lua_Object o) | 375 | static char *buildformat (char *e, lua_Object o) |
376 | { | 376 | { |
377 | static char buffer[512]; | 377 | static char buffer[2048]; |
378 | static char f[80]; | 378 | static char f[80]; |
379 | char *string = &buffer[255]; | 379 | char *string = &buffer[255]; |
380 | char *fstart=e, *fspace, *send; | 380 | char *fstart=e, *fspace, *send; |