mirror of
https://projects.vdr-developer.org/git/vdr-plugin-skindesigner.git
synced 2023-10-19 17:58:31 +02:00
fixed some compiler warnings
This commit is contained in:
parent
7ce445025e
commit
28fd2f5e1a
2
config.c
2
config.c
@ -72,7 +72,7 @@ void cDesignerConfig::ReadSkins(void) {
|
|||||||
continue;
|
continue;
|
||||||
skins.push_back(dirEntryName);
|
skins.push_back(dirEntryName);
|
||||||
}
|
}
|
||||||
dsyslog("skindesigner %d skins found in %s", skins.size(), *skinPath);
|
dsyslog("skindesigner %ld skins found in %s", skins.size(), *skinPath);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool cDesignerConfig::GetSkin(string &skin) {
|
bool cDesignerConfig::GetSkin(string &skin) {
|
||||||
|
@ -163,7 +163,7 @@ bool cPluginSkinDesigner::Service(const char *Id, void *Data) {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
config.AddPlugin(call->name, call->menus);
|
config.AddPlugin(call->name, call->menus);
|
||||||
dsyslog("skindesigner: plugin %s has registered %d templates", call->name.c_str(), call->menus.size());
|
dsyslog("skindesigner: plugin %s has registered %ld templates", call->name.c_str(), call->menus.size());
|
||||||
return true;
|
return true;
|
||||||
} else if (strcmp(Id, "GetDisplayMenu") == 0) {
|
} else if (strcmp(Id, "GetDisplayMenu") == 0) {
|
||||||
GetDisplayMenu* call = (GetDisplayMenu*) Data;
|
GetDisplayMenu* call = (GetDisplayMenu*) Data;
|
||||||
|
Loading…
Reference in New Issue
Block a user