remove extra ';'

git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-experimental@283 e54a6e83-5905-42d5-8d5c-058d10e6a962
This commit is contained in:
satbaby
2010-02-06 18:40:38 +00:00
parent dbd9a26801
commit c91e9bfb36
2 changed files with 6 additions and 6 deletions

View File

@@ -198,7 +198,7 @@ unsigned int CDVBString::add_character(const unsigned char character, const unsi
content += Unicode_Character_to_UTF8(character_unicode_value); content += Unicode_Character_to_UTF8(character_unicode_value);
return characters_parsed; return characters_parsed;
} }
CDVBString::CDVBString(const char * the_content, const int size) CDVBString::CDVBString(const char * the_content, const int size)
{ {
int i; int i;
@@ -232,19 +232,19 @@ CDVBString::CDVBString(const char * the_content, const int size)
i++; i++;
} }
} }
}; }
bool CDVBString::operator==(const CDVBString s) bool CDVBString::operator==(const CDVBString s)
{ {
return (this->content == s.content); return (this->content == s.content);
}; }
bool CDVBString::operator!=(const CDVBString s) bool CDVBString::operator!=(const CDVBString s)
{ {
return !(operator==(s)); return !(operator==(s));
}; }
std::string CDVBString::getContent() std::string CDVBString::getContent()
{ {
return content; return content;
}; }

View File

@@ -333,7 +333,7 @@ _repeat:
return 0; return 0;
} }
int scan_transponder(xmlNodePtr transponder, uint8_t diseqc_pos, t_satellite_position satellitePosition, bool satfeed) int scan_transponder(xmlNodePtr transponder, uint8_t diseqc_pos, t_satellite_position satellitePosition, bool /*satfeed*/)
{ {
uint8_t polarization = 0; uint8_t polarization = 0;
uint8_t system = 0, modulation = 1; uint8_t system = 0, modulation = 1;