diff options
author | Christian Wieninger <cwieninger@gmx.de> | 2010-04-13 18:16:20 +0200 |
---|---|---|
committer | Christian Wieninger <cwieninger@gmx.de> | 2010-04-13 18:16:20 +0200 |
commit | e3c5fb72ac51366a6dd810b829e2f0abcc54bfe7 (patch) | |
tree | 0a97024ed2d7b322b962a8fee68685fd7649b4ac /blacklist.c | |
parent | 15d0a516053e5e727572adc8e8b24611ead31f83 (diff) | |
download | vdr-plugin-epgsearch-e3c5fb72ac51366a6dd810b829e2f0abcc54bfe7.tar.gz vdr-plugin-epgsearch-e3c5fb72ac51366a6dd810b829e2f0abcc54bfe7.tar.bz2 |
fixed some compiler warnings
Diffstat (limited to 'blacklist.c')
-rw-r--r-- | blacklist.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/blacklist.c b/blacklist.c index dd8615b..7d10275 100644 --- a/blacklist.c +++ b/blacklist.c @@ -379,6 +379,8 @@ bool cBlacklist::Parse(const char *s) break; case 21: ignoreMissingEPGCats = atoi(value); break; + default: + break; } //switch } parameter++; @@ -478,6 +480,8 @@ bool cBlacklist::ParseExtEPGEntry(const char *s) } } break; + default: + break; } //switch } parameter++; |