summaryrefslogtreecommitdiff
path: root/yacc
diff options
context:
space:
mode:
authorDemi Marie Obenour <demiobenour@gmail.com>2022-11-30 21:42:22 -0500
committerDemi Marie Obenour <demiobenour@gmail.com>2022-11-30 21:48:40 -0500
commit6b6104b54dceeff607d951bb15758fb38395fadf (patch)
tree66a4e3310744fef6692156f71d6bfc4bdde3cb52 /yacc
parentfdee678bcdca6dde1398b21ce1ce93b1deea7ed0 (diff)
downloadocaml-6b6104b54dceeff607d951bb15758fb38395fadf.tar.gz
ocamlyacc: fix indent
No change in behavior.
Diffstat (limited to 'yacc')
-rw-r--r--yacc/reader.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/yacc/reader.c b/yacc/reader.c
index 25bd1277fd..7223c0b79d 100644
--- a/yacc/reader.c
+++ b/yacc/reader.c
@@ -78,7 +78,7 @@ static void pop_stack(char x) {
default: break;
}
fprintf(stderr, "Mismatched parentheses or braces: '%c'\n", x);
- syntax_error(lineno, line, cptr - 1);
+ syntax_error(lineno, line, cptr - 1);
}
}