summaryrefslogtreecommitdiff
path: root/libsi/util.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2004-10-23 14:24:17 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2004-10-23 14:24:17 +0200
commit5105187701a407e99a05e3e87bbf93aa28edfa40 (patch)
tree8db0972e3baf03fb8fc12ef0cba340a65c0c4271 /libsi/util.h
parent8ce024709102ac8293af1b7745a244e473df166e (diff)
downloadvdr-5105187701a407e99a05e3e87bbf93aa28edfa40.tar.gz
vdr-5105187701a407e99a05e3e87bbf93aa28edfa40.tar.bz2
Some minor code cleanups
Diffstat (limited to 'libsi/util.h')
-rw-r--r--libsi/util.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libsi/util.h b/libsi/util.h
index db2a0a17..da188ad4 100644
--- a/libsi/util.h
+++ b/libsi/util.h
@@ -6,7 +6,7 @@
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
- * $Id: util.h 1.4 2004/10/16 09:59:48 kls Exp $
+ * $Id: util.h 1.5 2004/10/23 14:22:40 kls Exp $
* *
***************************************************************************/
@@ -140,7 +140,7 @@ namespace DVBTime {
time_t getTime(unsigned char date_hi, unsigned char date_lo, unsigned char timehr, unsigned char timemi, unsigned char timese);
time_t getDuration(unsigned char timehr, unsigned char timemi, unsigned char timese);
inline unsigned char bcdToDec(unsigned char b) { return ((b >> 4) & 0x0F) * 10 + (b & 0x0F); }
-};
+}
//taken and adapted from libdtv, (c) Rolf Hakenes
class CRC32 {