summaryrefslogtreecommitdiff
path: root/remote.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2008-02-22 15:36:42 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2008-02-22 15:36:42 +0100
commit8bf512690ae3c1d367b79dc79674115be1e29571 (patch)
tree803c785a66d52cee1239bee98f5a34da31554bce /remote.c
parent0e7aa50a38848c67a9c6596a16909228c4c141e9 (diff)
downloadvdr-8bf512690ae3c1d367b79dc79674115be1e29571.tar.gz
vdr-8bf512690ae3c1d367b79dc79674115be1e29571.tar.bz2
Fixed the format in cRemote::Put() to use "%016llX" instead of "%016LX"
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 c7eb7fb9..c20647d3 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 1.57 2007/04/30 12:27:56 kls Exp $
+ * $Id: remote.c 1.58 2008/02/22 15:34:08 kls Exp $
*/
#include "remote.h"
@@ -121,7 +121,7 @@ bool cRemote::PutMacro(eKeys Key)
bool cRemote::Put(uint64_t Code, bool Repeat, bool Release)
{
char buffer[32];
- snprintf(buffer, sizeof(buffer), "%016LX", Code);
+ snprintf(buffer, sizeof(buffer), "%016llX", Code);
return Put(buffer, Repeat, Release);
}