diff options
Diffstat (limited to 'gcc/fortran/openmp.c')
-rw-r--r-- | gcc/fortran/openmp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/fortran/openmp.c b/gcc/fortran/openmp.c index 245f795..9c0bae4 100644 --- a/gcc/fortran/openmp.c +++ b/gcc/fortran/openmp.c @@ -36,17 +36,17 @@ match gfc_match_omp_eos (void) { locus old_loc; - int c; + char c; old_loc = gfc_current_locus; gfc_gobble_whitespace (); - c = gfc_next_char (); + c = gfc_next_ascii_char (); switch (c) { case '!': do - c = gfc_next_char (); + c = gfc_next_ascii_char (); while (c != '\n'); /* Fall through */ |