diff options
author | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2019-03-23 13:43:37 +0100 |
---|---|---|
committer | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2019-03-23 15:42:41 +0100 |
commit | 10f6d90f16835d0c534dca69fa8c32be37b53b8d (patch) | |
tree | 86ba9d454c2f41974f5da3befa4f37b91b40256d /imagecache.c | |
parent | 168973331cae4a6709d36fbedd590fa79e79aaf1 (diff) | |
download | vdr-plugin-tvguide-10f6d90f16835d0c534dca69fa8c32be37b53b8d.tar.gz vdr-plugin-tvguide-10f6d90f16835d0c534dca69fa8c32be37b53b8d.tar.bz2 |
Eliminate some warnings
Diffstat (limited to 'imagecache.c')
-rw-r--r-- | imagecache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/imagecache.c b/imagecache.c index 1dc4ef4..bc1a88f 100644 --- a/imagecache.c +++ b/imagecache.c @@ -351,7 +351,7 @@ cImage *cImageCache::GetLogo(const cChannel *channel) { } else {
bool success = LoadLogo(channel);
if (success) {
- if ((tvguideConfig.limitLogoCache) && (logoCache.size() >= tvguideConfig.numLogosMax)) {
+ if ((tvguideConfig.limitLogoCache) && ((int)logoCache.size() >= tvguideConfig.numLogosMax)) {
//logo cache is full, don't cache anymore
if (tempStaticLogo) {
delete tempStaticLogo;
|