From dd16536b40e10e52100cb8cf1965598cc3471ae6 Mon Sep 17 00:00:00 2001 From: anbr Date: Fri, 12 Apr 2013 19:18:26 +0200 Subject: Fix warning on amd64: format '%d' expects argument of type 'int'... [-Wformat] --- watch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/watch.c b/watch.c index d490372..9a8cb72 100644 --- a/watch.c +++ b/watch.c @@ -683,7 +683,7 @@ void cVFDWatch::Recording(const cDevice *pDevice, const char *szName, const char } } else { - esyslog("targaVFD: Recording: only up to %d devices are supported by this plugin", memberof(m_nCardIsRecording)); + esyslog("targaVFD: Recording: only up to %lu devices are supported by this plugin", (unsigned long)memberof(m_nCardIsRecording)); } } -- cgit v1.2.3