From 4ea90cefe831c52777f1be0877b499f432529cc7 Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Sun, 20 Oct 2013 09:57:55 +0200 Subject: Fixed some compiler warnings with gcc-4.6.3 --- recording.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'recording.c') diff --git a/recording.c b/recording.c index e41a89ea..d6ffb41e 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 3.7 2013/10/16 10:24:28 kls Exp $ + * $Id: recording.c 3.8 2013/10/20 09:51:23 kls Exp $ */ #include "recording.h" @@ -1693,7 +1693,7 @@ void cDirCopier::Action(void) off_t FileSizeSrc = FileSize(FileNameSrc); off_t FileSizeDst = FileSize(FileNameDst); if (FileSizeSrc != FileSizeDst) { - esyslog("ERROR: file size discrepancy: %lld != %lld", FileSizeSrc, FileSizeDst); + esyslog("ERROR: file size discrepancy: %"PRId64" != %"PRId64, FileSizeSrc, FileSizeDst); break; } } -- cgit v1.2.3