summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Hanisch <dvb@flensrocker.de>2010-11-17 20:09:26 +0100
committerLars Hanisch <dvb@flensrocker.de>2010-11-17 20:09:26 +0100
commit3a403a9edd8929f8cc2613b725246996cf39c9c0 (patch)
treeadd333e7cbcf586e2b7ce599d2abbad85385682d
parent7d883169bff854700e5263730ac7b319eb98da30 (diff)
downloadvdr-plugin-pvrinput-3a403a9edd8929f8cc2613b725246996cf39c9c0.tar.gz
vdr-plugin-pvrinput-3a403a9edd8929f8cc2613b725246996cf39c9c0.tar.bz2
fix format string
-rw-r--r--common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common.c b/common.c
index a4a3f07..66cbb10 100644
--- a/common.c
+++ b/common.c
@@ -41,7 +41,7 @@ improves stability if device/driver is actually busy
int IOCTL(int fd, int cmd, void *data)
{
if (fd < 0) {
- log(pvrERROR, "Error IOCTL %s: %s is not open", cmd, fd);
+ log(pvrERROR, "Error IOCTL: %s is not open", fd);
return -1;
}
for (int retry = 5; retry >= 0; ) {