summaryrefslogtreecommitdiff
path: root/src/output.c
diff options
context:
space:
mode:
authorAkim Demaille <akim.demaille@gmail.com>2019-01-12 09:23:02 +0100
committerAkim Demaille <akim.demaille@gmail.com>2019-01-12 09:41:10 +0100
commit3355ee32f062745a45556834770906b1513aba10 (patch)
treecc7196f561e71c8d15ab1c0d8078502b54b75c50 /src/output.c
parent7d545fd23fb59fa9b90dca6a38d7dc0501c25488 (diff)
downloadbison-3355ee32f062745a45556834770906b1513aba10.tar.gz
style: formatting clean up
* data/skeletons/d.m4, examples/d/calc.y, src/output.c, * src/parse-gram.y: No tab, no trailing spaces. Reported by syntax-check.
Diffstat (limited to 'src/output.c')
-rw-r--r--src/output.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/output.c b/src/output.c
index 6e3e0c2c..6a9553c5 100644
--- a/src/output.c
+++ b/src/output.c
@@ -236,7 +236,7 @@ prepare_rules (void)
prhs[r] = i;
/* RHS of the rule R. */
for (item_number *rhsp = rules[r].rhs; 0 <= *rhsp; ++rhsp)
- rhs[i++] = *rhsp;
+ rhs[i++] = *rhsp;
/* Separator in RHS. */
rhs[i++] = -1;
@@ -245,7 +245,7 @@ prepare_rules (void)
/* LHS of the rule R. */
r1[r] = rules[r].lhs->number;
/* Length of rule R's RHS. */
- r2[r] = rule_rhs_length(&rules[r]);
+ r2[r] = rule_rhs_length (&rules[r]);
/* Dynamic precedence (GLR). */
dprec[r] = rules[r].dprec;
/* Merger-function index (GLR). */