aboutsummaryrefslogtreecommitdiff
path: root/gcc/fortran/resolve.c
diff options
context:
space:
mode:
authorDanny Smith <dannysmith@users.sourceforge.net>2006-02-18 16:10:59 +0000
committerSteven G. Kargl <kargl@gcc.gnu.org>2006-02-18 16:10:59 +0000
commitef6a0629b45f7b2fa8ae02ff94de99a053071515 (patch)
tree21d407761fe42b423dece970ebc9559a6f96c965 /gcc/fortran/resolve.c
parente084430d3de94b907669a8606189208c03ca4334 (diff)
downloadgcc-ef6a0629b45f7b2fa8ae02ff94de99a053071515.zip
gcc-ef6a0629b45f7b2fa8ae02ff94de99a053071515.tar.gz
gcc-ef6a0629b45f7b2fa8ae02ff94de99a053071515.tar.bz2
gfortran.h (gfc_add_attribute): Change uint to unsigned int.
2006-02-18 Danny Smith <dannysmith@users.sourceforeg.net> * gfortran.h (gfc_add_attribute): Change uint to unsigned int. * symbol.c (gfc_add_attribute): Likewise for definition. * resolve.c (resolve_global_procedure): Likewise for variable 'type'. From-SVN: r111239
Diffstat (limited to 'gcc/fortran/resolve.c')
-rw-r--r--gcc/fortran/resolve.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/fortran/resolve.c b/gcc/fortran/resolve.c
index 61983d1..1de2446 100644
--- a/gcc/fortran/resolve.c
+++ b/gcc/fortran/resolve.c
@@ -916,7 +916,7 @@ static void
resolve_global_procedure (gfc_symbol *sym, locus *where, int sub)
{
gfc_gsymbol * gsym;
- uint type;
+ unsigned int type;
type = sub ? GSYM_SUBROUTINE : GSYM_FUNCTION;