summaryrefslogtreecommitdiffstats
path: root/hcid/parser.y
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2005-01-27 17:47:33 +0000
committerMarcel Holtmann <marcel@holtmann.org>2005-01-27 17:47:33 +0000
commit0dab40dad416805e31cb5312956880609dc21443 (patch)
tree78b46ac268ad29b1bad159b91d62a4d998ba8274 /hcid/parser.y
parentd06620c3403ca50e6d8f9f0cba4e6e8c0486438e (diff)
Cleanup the syslog messages
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;
}