[gimp/metadata-browser] selection-to-path: Remove dead assignments (and variable)
- From: Roman Joost <romanofski src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp/metadata-browser] selection-to-path: Remove dead assignments (and variable)
- Date: Fri, 2 Dec 2011 02:03:13 +0000 (UTC)
commit b874785964ae5d4ec62027d7a36d3051a6888023
Author: Mukund Sivaraman <muks banu com>
Date: Mon Oct 3 13:18:39 2011 +0530
selection-to-path: Remove dead assignments (and variable)
plug-ins/selection-to-path/pxl-outline.c | 5 -----
1 files changed, 0 insertions(+), 5 deletions(-)
---
diff --git a/plug-ins/selection-to-path/pxl-outline.c b/plug-ins/selection-to-path/pxl-outline.c
index 13d3956..f6d1358 100644
--- a/plug-ins/selection-to-path/pxl-outline.c
+++ b/plug-ins/selection-to-path/pxl-outline.c
@@ -224,7 +224,6 @@ static void
append_coordinate (pixel_outline_type *o, int x, int y, edge_type edge)
{
coordinate_type c;
- char * str;
c.x = x;
c.y = y;
@@ -233,22 +232,18 @@ append_coordinate (pixel_outline_type *o, int x, int y, edge_type edge)
{
case top:
c.y++;
- str = "top";
break;
case right:
c.x++;
c.y++;
- str = "right";
break;
case bottom:
c.x++;
- str = "bottom";
break;
case left:
- str = "left";
break;
default:
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]