From a025b151efa892ede252af851a6d484fc8f0d8dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Wed, 23 Sep 2015 19:59:23 +0200 Subject: [PATCH] st: Don't shadow existing variables --- src/st/st-private.c | 3 --- src/st/st-theme-node.c | 4 ++-- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/src/st/st-private.c b/src/st/st-private.c index f27955c8d..c842be0cf 100644 --- a/src/st/st-private.c +++ b/src/st/st-private.c @@ -383,9 +383,6 @@ _st_create_shadow_pipeline (StShadow *shadow_spec, if (G_UNLIKELY (shadow_pipeline_template == NULL)) { - CoglContext *ctx = - clutter_backend_get_cogl_context (clutter_get_default_backend ()); - shadow_pipeline_template = cogl_pipeline_new (ctx); /* We set up the pipeline to blend the shadow texture with the combine diff --git a/src/st/st-theme-node.c b/src/st/st-theme-node.c index 7437fd05c..d71466c5a 100644 --- a/src/st/st-theme-node.c +++ b/src/st/st-theme-node.c @@ -3016,7 +3016,7 @@ st_theme_node_get_border_image (StThemeNode *node) CRStyleSheet *base_stylesheet; int borders[4]; int n_borders = 0; - int i; + int j; const char *url; int border_top; @@ -3046,7 +3046,7 @@ st_theme_node_get_border_image (StThemeNode *node) /* Followed by 0 to 4 numbers or percentages. *Not lengths*. The interpretation * of a number is supposed to be pixels if the image is pixel based, otherwise CSS pixels. */ - for (i = 0; i < 4; i++) + for (j = 0; j < 4; j++) { if (term == NULL) break;