diff options
| author | Klaus Schmidinger <vdr@tvdr.de> | 2010-01-01 15:44:52 +0100 |
|---|---|---|
| committer | Klaus Schmidinger <vdr@tvdr.de> | 2010-01-01 15:44:52 +0100 |
| commit | 68d59e292124abc89432e8403c4c2b7441c55f7c (patch) | |
| tree | 52433792ff27e1c205f67d9d4018099039361182 /channels.c | |
| parent | 491c6d0a859c98b7da69b5b4a01be0133fdfdc1c (diff) | |
| download | vdr-68d59e292124abc89432e8403c4c2b7441c55f7c.tar.gz vdr-68d59e292124abc89432e8403c4c2b7441c55f7c.tar.bz2 | |
Fixed compiler warnings "format not a string literal and no format arguments" in some syslog calls
Diffstat (limited to 'channels.c')
| -rw-r--r-- | channels.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: channels.c 2.10 2009/12/23 15:56:03 kls Exp $ + * $Id: channels.c 2.11 2010/01/01 15:38:18 kls Exp $ */ #include "channels.h" @@ -626,7 +626,7 @@ void cChannel::SetLinkChannels(cLinkChannels *LinkChannels) else q += sprintf(q, " none"); if (Number()) - dsyslog(buffer); + dsyslog("%s", buffer); } void cChannel::SetRefChannel(cChannel *RefChannel) |
