diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2004-01-10 12:21:41 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2004-01-10 12:21:41 +0100 |
commit | 0a62be0274a0c536b2d32e3d24e321efb385b26c (patch) | |
tree | 457f0057b66a54aebd2704246c604ae05e597f89 /dvbdevice.c | |
parent | 00d52b12c6547a8aaa4d7b7e0b60d827f0928f3e (diff) | |
download | vdr-0a62be0274a0c536b2d32e3d24e321efb385b26c.tar.gz vdr-0a62be0274a0c536b2d32e3d24e321efb385b26c.tar.bz2 |
Added %m to error message
Diffstat (limited to 'dvbdevice.c')
-rw-r--r-- | dvbdevice.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dvbdevice.c b/dvbdevice.c index f9ae5760..cddde8e2 100644 --- a/dvbdevice.c +++ b/dvbdevice.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: dvbdevice.c 1.77 2004/01/05 12:24:18 kls Exp $ + * $Id: dvbdevice.c 1.78 2004/01/10 12:21:41 kls Exp $ */ #include "dvbdevice.h" @@ -632,7 +632,7 @@ int cDvbDevice::OpenFilter(u_short Pid, u_char Tid, u_char Mask) if (ioctl(f, DMX_SET_FILTER, &sctFilterParams) >= 0) return f; else { - esyslog("ERROR: can't set filter (pid=%d, tid=%02X, mask=%02X)", Pid, Tid, Mask); + esyslog("ERROR: can't set filter (pid=%d, tid=%02X, mask=%02X): %m", Pid, Tid, Mask); close(f); } } |