summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2006-05-27 14:13:06 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2006-05-27 14:13:06 +0200
commitebd579a64a659b4ed2814cb7903e3d4ee7032501 (patch)
tree529219557a85bd6665af76f39dd81b04a866bf45
parentba0a06bf0dac8f74f8b766a1b0f7aaa4fe6bff1e (diff)
downloadvdr-ebd579a64a659b4ed2814cb7903e3d4ee7032501.tar.gz
vdr-ebd579a64a659b4ed2814cb7903e3d4ee7032501.tar.bz2
Avoiding a compiler warning in libsi's TypeLoop::operator[]
-rw-r--r--HISTORY3
-rw-r--r--libsi/si.h3
2 files changed, 4 insertions, 2 deletions
diff --git a/HISTORY b/HISTORY
index a995aba4..2dc348c3 100644
--- a/HISTORY
+++ b/HISTORY
@@ -4716,7 +4716,7 @@ Video Disk Recorder Revision History
- Fixed automatically updating the CAM menu in case the whole operation (for
instance a firmware update) takes longer than the menu timeout.
-2006-05-26: Version 1.4.0-2
+2006-05-27: Version 1.4.0-2
- Removed leftover LSMOD=... line from 'runvdr'.
- Modified the Makefile to copy additional libraries a plugin might provide (suggested
@@ -4738,3 +4738,4 @@ Video Disk Recorder Revision History
- Removed -fPIC from VDR's and libsi's Makefile (suggested by Prakash Punnoor).
- Modifed the device selection to better handle timer conflicts (reported by
Christian Wieninger).
+- Avoiding a compiler warning in libsi's TypeLoop::operator[].
diff --git a/libsi/si.h b/libsi/si.h
index 6922cdcd..a4877169 100644
--- a/libsi/si.h
+++ b/libsi/si.h
@@ -6,7 +6,7 @@
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
- * $Id: si.h 1.14 2006/04/14 10:53:44 kls Exp $
+ * $Id: si.h 1.15 2006/05/27 13:07:20 kls Exp $
* *
***************************************************************************/
@@ -399,6 +399,7 @@ public:
case 8:
return (SixtyFourBit(data.FourBytes(index)) << 32) | data.FourBytes(index+4);
}
+ return 0; // just to avoid a compiler warning
}
T getNext(Iterator &it) const
{