Commit a9390eaf by Thomas Koenig Committed by Thomas Koenig

list_read.c: Adjust size of of value to 32 (to hold kind=16 complex values).

2005-09-05  Thomas Koenig  <Thomas.Koenig@online.de>

	* io/list_read.c:  Adjust size of of value to 32 (to hold
	kind=16 complex values).

From-SVN: r103918
parent bf877a76
2005-09-05 Thomas Koenig <Thomas.Koenig@online.de>
* io/list_read.c: Adjust size of of value to 32 (to hold
kind=16 complex values).
2005-09-04 Thomas Koenig <Thomas.Koenig@online.de>
PR libfortran/23321
......
......@@ -71,7 +71,7 @@ static int nml_read_error;
/* Storage area for values except for strings. Must be large enough
to hold a complex value (two reals) of the largest kind. */
static char value[20];
static char value[32];
#define CASE_DIGITS case '0': case '1': case '2': case '3': case '4': \
case '5': case '6': case '7': case '8': case '9'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment