grab is never used even though it is assigned. This patch removes
the declaration and the assignment.

Signed-off-by: Erik Hovland <erik@hovland.org>

---

 mythplugins/mythmovies/ignyte/main.cpp |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/mythplugins/mythmovies/ignyte/main.cpp b/mythplugins/mythmovies/ignyte/main.cpp
index 8b20f70..ebd4b7b 100644
--- a/mythplugins/mythmovies/ignyte/main.cpp
+++ b/mythplugins/mythmovies/ignyte/main.cpp
@@ -20,8 +20,7 @@ int main(int argc, char **argv)
     }
 
     QApplication app(argc, argv, false);
-    IgnyteGrabber *grab;
-    grab = new IgnyteGrabber(zip, radius, &app);
+    new IgnyteGrabber(zip, radius, &app);
     return app.exec();
 }
 
