summaryrefslogtreecommitdiff
path: root/conf/confbase.Y
diff options
context:
space:
mode:
authorOndrej Zajicek (work) <santiago@crfreenet.org>2016-11-08 17:46:29 +0100
committerOndrej Zajicek (work) <santiago@crfreenet.org>2016-11-08 17:46:29 +0100
commitc8cafc8ebb5320ac7c6117c17e6460036f0fdf62 (patch)
treea6ea77c3129973089e49ce65591bd6cf65f4d713 /conf/confbase.Y
parent920a86e8493fe25008f084f67f368aea9b197efd (diff)
Minor code cleanups
Diffstat (limited to 'conf/confbase.Y')
-rw-r--r--conf/confbase.Y2
1 files changed, 1 insertions, 1 deletions
diff --git a/conf/confbase.Y b/conf/confbase.Y
index c14c23c7..96b32028 100644
--- a/conf/confbase.Y
+++ b/conf/confbase.Y
@@ -138,7 +138,7 @@ expr_us:
/* Switches */
bool:
- expr {$$ = !!$1; }
+ expr { $$ = !!$1; }
| ON { $$ = 1; }
| YES { $$ = 1; }
| OFF { $$ = 0; }