summaryrefslogtreecommitdiff
path: root/remote.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2015-01-20 14:56:18 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2015-01-20 14:56:18 +0100
commit24c9e457890fc3d733dbd28029967b1bc0d2569e (patch)
treeee163a7f5edffaba88b263b8fbcff9e76a878ca0 /remote.c
parent53db7fdc508720950d3f76958e99bd42de87c97b (diff)
downloadvdr-24c9e457890fc3d733dbd28029967b1bc0d2569e.tar.gz
vdr-24c9e457890fc3d733dbd28029967b1bc0d2569e.tar.bz2
Fixed "warning: invalid suffix on literal" with GCC 4.8 and C++11
Diffstat (limited to 'remote.c')
-rw-r--r--remote.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/remote.c b/remote.c
index 5cb2ccb8..ac10dce7 100644
--- a/remote.c
+++ b/remote.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: remote.c 3.2 2014/02/15 12:40:39 kls Exp $
+ * $Id: remote.c 3.3 2015/01/20 14:53:57 kls Exp $
*/
#include "remote.h"
@@ -124,7 +124,7 @@ bool cRemote::PutMacro(eKeys Key)
bool cRemote::Put(uint64_t Code, bool Repeat, bool Release)
{
char buffer[32];
- snprintf(buffer, sizeof(buffer), "%016"PRIX64, Code);
+ snprintf(buffer, sizeof(buffer), "%016" PRIX64, Code);
return Put(buffer, Repeat, Release);
}