summaryrefslogtreecommitdiffstats
path: root/hcid/parser.y
diff options
context:
space:
mode:
Diffstat (limited to 'hcid/parser.y')
-rw-r--r--hcid/parser.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/hcid/parser.y b/hcid/parser.y
index b56bd588..136a8571 100644
--- a/hcid/parser.y
+++ b/hcid/parser.y
@@ -294,7 +294,7 @@ bool: K_YES { $$ = 1; } | K_NO { $$ = 0; };
int yyerror(char *s)
{
- syslog(LOG_ERR, "%s line %d\n", s, lineno);
+ syslog(LOG_ERR, "%s line %d", s, lineno);
return 0;
}