diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-11-21 02:35:52 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-11-21 02:35:52 +0000 |
| commit | 4b8b88b747f1229b3538320d934d686e0d71e812 (patch) | |
| tree | 9627e1a03d313355a2c571effd21bf545d0dd25a /lib/dvb | |
| parent | 2b19c7469aecb23aa1a3429cc2fa41bd699bb9d9 (diff) | |
| download | enigma2-4b8b88b747f1229b3538320d934d686e0d71e812.tar.gz enigma2-4b8b88b747f1229b3538320d934d686e0d71e812.zip | |
it doesn't compile with const
Ghost: is this correct now?
Diffstat (limited to 'lib/dvb')
| -rw-r--r-- | lib/dvb/pmt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/dvb/pmt.cpp b/lib/dvb/pmt.cpp index 834a2905..c9ff3cb6 100644 --- a/lib/dvb/pmt.cpp +++ b/lib/dvb/pmt.cpp @@ -424,7 +424,7 @@ void eDVBCAService::buildCAPMT(eTable<ProgramMapSection> *ptr) return; } - const std::vector<ProgramMapSection*>::const_iterator i=ptr->getSections().begin(); + std::vector<ProgramMapSection*>::const_iterator i=ptr->getSections().begin(); if ( i != ptr->getSections().end() ) { CaProgramMapSection capmt(*i++, m_prev_build_hash ? 0x05 /*update*/ : 0x03 /*only*/, 0x01 ); |
