diff options
author | anbr <vdr07@deltab.de> | 2013-04-12 19:18:26 +0200 |
---|---|---|
committer | anbr <vdr07@deltab.de> | 2013-04-12 19:18:26 +0200 |
commit | dd16536b40e10e52100cb8cf1965598cc3471ae6 (patch) | |
tree | a1e3aa84c3bc84105e5698903d91cbe2f86e9b14 | |
parent | a0e3e4ee900ed3f664ac9313b049611a9440d11a (diff) | |
download | vdr-plugin-targavfd-dd16536b40e10e52100cb8cf1965598cc3471ae6.tar.gz vdr-plugin-targavfd-dd16536b40e10e52100cb8cf1965598cc3471ae6.tar.bz2 |
Fix warning on amd64: format '%d' expects argument of type 'int'... [-Wformat]
-rw-r--r-- | watch.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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)); } } |