diff options
author | Joachim Wilke <git@joachim-wilke.de> | 2013-01-21 17:15:55 +0100 |
---|---|---|
committer | Joachim Wilke <git@joachim-wilke.de> | 2013-01-21 17:15:55 +0100 |
commit | b5497b7a283296403e2a99a2577438b437d0ffb6 (patch) | |
tree | bd5e6435cc658ef7ee8106b5620f625998f0da71 | |
parent | 8d2ebb364e57e8c8237d38e271e84421093bda9c (diff) | |
download | vdr-plugin-lcdproc-b5497b7a283296403e2a99a2577438b437d0ffb6.tar.gz vdr-plugin-lcdproc-b5497b7a283296403e2a99a2577438b437d0ffb6.tar.bz2 |
Fix an issue with gcc 4.7
-rw-r--r-- | lcd.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -808,7 +808,7 @@ void cLcd::Action(void) { // LCD output thread cLcd::Write(LcdSetup.ShowTime?1:4," Welcome to V D R\0"); cLcd::Write(LcdSetup.ShowTime?2:3,"--------------------\0"); cLcd::Write(LcdSetup.ShowTime?3:1,"Video Disk Recorder\0"); - cLcd::Write(LcdSetup.ShowTime?4:2,"Version: "VDRVERSION"\0"); + cLcd::Write(LcdSetup.ShowTime?4:2,"Version: " VDRVERSION "\0"); // Output init if (LcdSetup.OutputNumber > 0){ |