From 6ea66d8142e8e9fbb63fde61415c8c09718a0d80 Mon Sep 17 00:00:00 2001 From: Mukund Sivaraman Date: Tue, 11 Oct 2011 09:57:55 +0530 Subject: [PATCH] qbist: Delete dead variable and assignment --- plug-ins/common/qbist.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plug-ins/common/qbist.c b/plug-ins/common/qbist.c index b8fea8e852..bb7cdc0c9d 100644 --- a/plug-ins/common/qbist.c +++ b/plug-ins/common/qbist.c @@ -431,7 +431,7 @@ run (const gchar *name, { static GimpParam values[1]; gint sel_x1, sel_y1, sel_x2, sel_y2; - gint img_height, img_width, img_bpp; + gint img_height, img_width; GimpDrawable *drawable; GimpRunMode run_mode; @@ -455,7 +455,6 @@ run (const gchar *name, img_width = gimp_drawable_width (drawable->drawable_id); img_height = gimp_drawable_height (drawable->drawable_id); - img_bpp = gimp_drawable_bpp (drawable->drawable_id); gimp_drawable_mask_bounds (drawable->drawable_id, &sel_x1, &sel_y1, &sel_x2, &sel_y2);