diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2000-07-13 20:09:55 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2000-07-13 20:09:55 +0000 |
commit | af0d1578e4867550479497c9b103d4451abbad0c (patch) | |
tree | 9c710c1f51fc4429e5d8bd3cd67911e9128fc9fa /gcc/cpphash.c | |
parent | ee97d3542d91ac097597a3b340c80c6c56d49f13 (diff) | |
download | gcc-af0d1578e4867550479497c9b103d4451abbad0c.zip gcc-af0d1578e4867550479497c9b103d4451abbad0c.tar.gz gcc-af0d1578e4867550479497c9b103d4451abbad0c.tar.bz2 |
* cpphash.c (macro_info): Don't use the `signed' keyword.
From-SVN: r35023
Diffstat (limited to 'gcc/cpphash.c')
-rw-r--r-- | gcc/cpphash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cpphash.c b/gcc/cpphash.c index 749187f..5dbae9a 100644 --- a/gcc/cpphash.c +++ b/gcc/cpphash.c @@ -45,7 +45,7 @@ struct hashdummy struct macro_info { unsigned int paramlen; - signed short paramc; + short paramc; unsigned char flags; }; |