diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2007-09-25 10:13:37 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2007-09-25 10:13:37 +0000 |
| commit | c68ba62edaf957054397272becae9cbbf7f5b0c9 (patch) | |
| tree | 0694f590d8804031360e8c8fb8b6af5d0a19af2a /lib/dvb/epgcache.cpp | |
| parent | af7b6ac725e9dc122a9fbaa4e127c3b39e591b62 (diff) | |
| download | enigma2-c68ba62edaf957054397272becae9cbbf7f5b0c9.tar.gz enigma2-c68ba62edaf957054397272becae9cbbf7f5b0c9.zip | |
small fix
Diffstat (limited to 'lib/dvb/epgcache.cpp')
| -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 8cdfa0c9..02b3d57e 100644 --- a/lib/dvb/epgcache.cpp +++ b/lib/dvb/epgcache.cpp @@ -1531,7 +1531,7 @@ RESULT eEPGCache::startTimeQuery(const eServiceReference &service, time_t begin, } if (minutes != -1) - m_timemap_end = It->second.second.upper_bound(begin+minutes*60); + m_timemap_end = It->second.second.lower_bound(begin+minutes*60); else m_timemap_end = It->second.second.end(); |
