diff options
Diffstat (limited to 'tvguideng.c')
-rw-r--r-- | tvguideng.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tvguideng.c b/tvguideng.c index 652efa0..ca38ef6 100644 --- a/tvguideng.c +++ b/tvguideng.c @@ -101,10 +101,10 @@ bool cPluginTvguideng::Service(const char *Id, void *Data) { if (strcmp(Id, "MainMenuHooksPatch-v1.0::osSchedule") == 0 && config.replaceOriginalSchedule != 0) { if (Data == NULL) return true; - cOsdObject **guide = (cOsdObject**) Data; - if (guide) - *guide = MainMenuAction(); - return true; + cOsdObject **guide = (cOsdObject**) Data; + if (guide) + *guide = MainMenuAction(); + return true; } return false; } |