summaryrefslogtreecommitdiff
path: root/recording.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2006-04-23 11:23:17 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2006-04-23 11:23:17 +0200
commit33397874da5b29b16bcac13624160a89eb010058 (patch)
tree5a309d5349949b4a4a5ddb49b501c61917b6ed5d /recording.c
parentd7c8025fba61355f6b7f8e306c930da11525cb63 (diff)
downloadvdr-33397874da5b29b16bcac13624160a89eb010058.tar.gz
vdr-33397874da5b29b16bcac13624160a89eb010058.tar.bz2
Fixed a format string in recording.c to avoid a compiler warning on 64bit systems
Diffstat (limited to 'recording.c')
-rw-r--r--recording.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/recording.c b/recording.c
index 1f2f015b..351713e9 100644
--- a/recording.c
+++ b/recording.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: recording.c 1.146 2006/04/17 11:00:00 kls Exp $
+ * $Id: recording.c 1.147 2006/04/23 10:43:06 kls Exp $
*/
#include "recording.h"
@@ -1197,7 +1197,7 @@ cIndexFile::cIndexFile(const char *FileName, bool Record)
LOG_ERROR_STR(fileName);
}
else
- esyslog("ERROR: can't allocate %d bytes for index '%s'", size * sizeof(tIndex), fileName);
+ esyslog("ERROR: can't allocate %zd bytes for index '%s'", size * sizeof(tIndex), fileName);
}
}
else