From 3a403a9edd8929f8cc2613b725246996cf39c9c0 Mon Sep 17 00:00:00 2001 From: Lars Hanisch Date: Wed, 17 Nov 2010 20:09:26 +0100 Subject: fix format string --- common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; ) { -- cgit v1.2.3