summaryrefslogtreecommitdiff
path: root/themes.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2005-11-04 14:22:04 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2005-11-04 14:22:04 +0100
commit52f17c043b6cc124b5745c4b8b32eea4b8c4efab (patch)
tree95efc53393082656ed0b3fe9ce6feba7b5d8a857 /themes.c
parent159c7e283d8cf14fc676a6278cace9c88212c3e2 (diff)
downloadvdr-52f17c043b6cc124b5745c4b8b32eea4b8c4efab.tar.gz
vdr-52f17c043b6cc124b5745c4b8b32eea4b8c4efab.tar.bz2
Removed '\n' from several syslog() calls
Diffstat (limited to 'themes.c')
-rw-r--r--themes.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/themes.c b/themes.c
index 69af61ff..45fc1725 100644
--- a/themes.c
+++ b/themes.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: themes.c 1.5 2004/12/24 17:00:41 kls Exp $
+ * $Id: themes.c 1.6 2005/11/04 14:19:54 kls Exp $
*/
#include "themes.h"
@@ -152,7 +152,7 @@ bool cTheme::Load(const char *FileName, bool OnlyDescriptions)
}
}
if (!result)
- esyslog("ERROR: error in %s, line %d%s%s\n", FileName, line, error ? ": " : "", error ? error : "");
+ esyslog("ERROR: error in %s, line %d%s%s", FileName, line, error ? ": " : "", error ? error : "");
fclose(f);
}
else