summaryrefslogtreecommitdiff
path: root/remote.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2011-08-15 14:13:42 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2011-08-15 14:13:42 +0200
commitf4007c7ff3d1f1f686bf3c74399027f7d91de86b (patch)
tree51b441aafdc662c09ea76d73b7e43f1ce8e7f028 /remote.c
parent4a9fd9b097c0c1bbd37b436bbd4bb0a6a6bf78a9 (diff)
downloadvdr-f4007c7ff3d1f1f686bf3c74399027f7d91de86b.tar.gz
vdr-f4007c7ff3d1f1f686bf3c74399027f7d91de86b.tar.bz2
cTimeMs is no longer initialized to the current time if the value given to the constructor is negative1.7.20
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 cd3a7585..88773a5b 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 2.3 2011/03/27 15:03:36 kls Exp $
+ * $Id: remote.c 2.4 2011/08/15 13:41:40 kls Exp $
*/
#include "remote.h"
@@ -26,7 +26,7 @@
eKeys cRemote::keys[MaxKeys];
int cRemote::in = 0;
int cRemote::out = 0;
-cTimeMs cRemote::repeatTimeout;
+cTimeMs cRemote::repeatTimeout(-1);
cRemote *cRemote::learning = NULL;
char *cRemote::unknownCode = NULL;
cMutex cRemote::mutex;