diff options
Diffstat (limited to 'gcc/fortran/io.c')
-rw-r--r-- | gcc/fortran/io.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/fortran/io.c b/gcc/fortran/io.c index 9a77234..e33fc56 100644 --- a/gcc/fortran/io.c +++ b/gcc/fortran/io.c @@ -2006,8 +2006,8 @@ gfc_match_open (void) { static const char *delim[] = { "APOSTROPHE", "QUOTE", "NONE", NULL }; - if (!is_char_type ("DELIM", open->delim)) - goto cleanup; + if (!is_char_type ("DELIM", open->delim)) + goto cleanup; if (!compare_to_allowed_values ("DELIM", delim, NULL, NULL, open->delim->value.character.string, |