mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Added a missing '.' after the month in VPS strings
This commit is contained in:
parent
5e16ed7aab
commit
b74cb56d2b
1
HISTORY
1
HISTORY
@ -6860,3 +6860,4 @@ Video Disk Recorder Revision History
|
||||
- Improved handling subtitles of BBC channels.
|
||||
- No longer using tabs as delimiter in the EPG bugfix log (they were garbled in the
|
||||
log file).
|
||||
- Added a missing '.' after the month in VPS strings.
|
||||
|
4
epg.c
4
epg.c
@ -7,7 +7,7 @@
|
||||
* Original version (as used in VDR before 1.3.0) written by
|
||||
* Robert Schneider <Robert.Schneider@web.de> and Rolf Hakenes <hakenes@hippomi.de>.
|
||||
*
|
||||
* $Id: epg.c 2.10 2012/02/13 14:51:29 kls Exp $
|
||||
* $Id: epg.c 2.11 2012/02/13 14:58:19 kls Exp $
|
||||
*/
|
||||
|
||||
#include "epg.h"
|
||||
@ -424,7 +424,7 @@ cString cEvent::GetVpsString(void) const
|
||||
{
|
||||
char buf[25];
|
||||
struct tm tm_r;
|
||||
strftime(buf, sizeof(buf), "%d.%m %R", localtime_r(&vps, &tm_r));
|
||||
strftime(buf, sizeof(buf), "%d.%m. %R", localtime_r(&vps, &tm_r));
|
||||
return buf;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user