mirror of git://gcc.gnu.org/git/gcc.git
* io/unix.c (stream_ttyname): Mark argument as potentialy unused.
From-SVN: r126983
This commit is contained in:
parent
7aa34e7a72
commit
008afe5148
|
@ -1,3 +1,7 @@
|
||||||
|
2007-07-27 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
|
||||||
|
|
||||||
|
* io/unix.c (stream_ttyname): Mark argument as potentialy unused.
|
||||||
|
|
||||||
2007-07-27 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
|
2007-07-27 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
|
||||||
|
|
||||||
PR fortran/32035
|
PR fortran/32035
|
||||||
|
|
|
@ -1945,7 +1945,7 @@ stream_isatty (stream *s)
|
||||||
}
|
}
|
||||||
|
|
||||||
char *
|
char *
|
||||||
stream_ttyname (stream *s)
|
stream_ttyname (stream *s __attribute__ ((unused)))
|
||||||
{
|
{
|
||||||
#ifdef HAVE_TTYNAME
|
#ifdef HAVE_TTYNAME
|
||||||
return ttyname (((unix_stream *) s)->fd);
|
return ttyname (((unix_stream *) s)->fd);
|
||||||
|
|
Loading…
Reference in New Issue