diff options
| author | Lars Hanisch <dvb@flensrocker.de> | 2010-11-17 20:09:26 +0100 |
|---|---|---|
| committer | Lars Hanisch <dvb@flensrocker.de> | 2010-11-17 20:09:26 +0100 |
| commit | 3a403a9edd8929f8cc2613b725246996cf39c9c0 (patch) | |
| tree | add333e7cbcf586e2b7ce599d2abbad85385682d | |
| parent | 7d883169bff854700e5263730ac7b319eb98da30 (diff) | |
| download | vdr-plugin-pvrinput-3a403a9edd8929f8cc2613b725246996cf39c9c0.tar.gz vdr-plugin-pvrinput-3a403a9edd8929f8cc2613b725246996cf39c9c0.tar.bz2 | |
fix format string
| -rw-r--r-- | common.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; ) { |
