diff options
| author | Andreas Oberritter <obi@saftware.de> | 2009-08-18 17:32:15 +0200 |
|---|---|---|
| committer | Andreas Oberritter <obi@saftware.de> | 2009-08-18 17:32:15 +0200 |
| commit | c1b9e3297263f93db9b7591313d4c8861083f19d (patch) | |
| tree | 0a82886ff9f554add55d3c541d67f14582660282 | |
| parent | 3dbd82cf4db68785afeda17b8eee7f87c7d80dd7 (diff) | |
| download | enigma2-c1b9e3297263f93db9b7591313d4c8861083f19d.tar.gz enigma2-c1b9e3297263f93db9b7591313d4c8861083f19d.zip | |
add missing semicolon after ASSERT()
| -rw-r--r-- | lib/dvb/epgcache.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/dvb/epgcache.cpp b/lib/dvb/epgcache.cpp index 9abd554e..4ea47963 100644 --- a/lib/dvb/epgcache.cpp +++ b/lib/dvb/epgcache.cpp @@ -2668,7 +2668,7 @@ void eEPGCache::privateSectionRead(const uniqueEPGKey ¤t_service, const __ } } } - ASSERT(pdescr <= &descriptors[65]) + ASSERT(pdescr <= &descriptors[65]); __u8 event[4098]; eit_event_struct *ev_struct = (eit_event_struct*) event; ev_struct->running_status = 0; |
