Commit 51407486 by Thomas Koenig

list_read.c (list_formatted_read_scalar): Declare type as volatile to shut up compiler warning.

2008-05-17  Thomas Koenig  <tkoenig@gcc.gnu.org>

	* io/list_read.c (list_formatted_read_scalar):  Declare
	type as volatile to shut up compiler warning.

From-SVN: r135480
parent 944d3ef1
2008-05-17 Thomas Koenig <tkoenig@gcc.gnu.org>
* io/list_read.c (list_formatted_read_scalar): Declare
type as volatile to shut up compiler warning.
2008-05-16 Janne Blomqvist <jb@gcc.gnu.org> 2008-05-16 Janne Blomqvist <jb@gcc.gnu.org>
PR libfortran/25561 PR libfortran/25561
......
...@@ -1724,8 +1724,8 @@ check_type (st_parameter_dt *dtp, bt type, int len) ...@@ -1724,8 +1724,8 @@ check_type (st_parameter_dt *dtp, bt type, int len)
greater than one, we copy the data item multiple times. */ greater than one, we copy the data item multiple times. */
static void static void
list_formatted_read_scalar (st_parameter_dt *dtp, bt type, void *p, int kind, list_formatted_read_scalar (st_parameter_dt *dtp, volatile bt type, void *p,
size_t size) int kind, size_t size)
{ {
char c; char c;
int m; int m;
......
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