diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2019-05-29 14:23:40 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2019-05-29 14:23:40 +0200 |
commit | 712523f0040ec18846ded1dea8d1838e80566f02 (patch) | |
tree | f71af77a1400b226b45a056e0e3af97badf96f17 /recording.c | |
parent | c2634a7ccf815bedc26671b803dc571f0544fc73 (diff) | |
download | vdr-712523f0040ec18846ded1dea8d1838e80566f02.tar.gz vdr-712523f0040ec18846ded1dea8d1838e80566f02.tar.bz2 |
Fixed a wrong variable name in cFileName::cFileName()
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 53788580..810ef809 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 4.26 2019/05/07 09:22:34 kls Exp $ + * $Id: recording.c 4.27 2019/05/28 21:47:32 kls Exp $ */ #include "recording.h" @@ -2896,7 +2896,7 @@ cFileName::cFileName(const char *FileName, bool Record, bool Blocking, bool IsPe // Prepare the file name: fileName = MALLOC(char, strlen(FileName) + RECORDFILESUFFIXLEN); if (!fileName) { - esyslog("ERROR: can't copy file name '%s'", fileName); + esyslog("ERROR: can't copy file name '%s'", FileName); return; } strcpy(fileName, FileName); |