diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2013-10-20 09:57:55 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2013-10-20 09:57:55 +0200 |
commit | 4ea90cefe831c52777f1be0877b499f432529cc7 (patch) | |
tree | d8e7cda0e82d04728b71b4c3c3250dd5b06486a8 /recording.c | |
parent | 97eb54738f55e8a7682a662be9492792bb23ad33 (diff) | |
download | vdr-4ea90cefe831c52777f1be0877b499f432529cc7.tar.gz vdr-4ea90cefe831c52777f1be0877b499f432529cc7.tar.bz2 |
Fixed some compiler warnings with gcc-4.6.3
Diffstat (limited to 'recording.c')
-rw-r--r-- | recording.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; } } |