summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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; ) {