summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rsvg-filter.c2
-rw-r--r--rsvg-path.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/rsvg-filter.c b/rsvg-filter.c
index ce8d690c..4bd3b6b6 100644
--- a/rsvg-filter.c
+++ b/rsvg-filter.c
@@ -3960,7 +3960,7 @@ struct _RsvgNodeLightSource
{
RsvgNode super;
lightType type;
- gdouble azimuth;;
+ gdouble azimuth;
gdouble elevation;
RsvgLength x, y, z, pointsAtX, pointsAtY, pointsAtZ;
gdouble specularExponent;
diff --git a/rsvg-path.c b/rsvg-path.c
index 997e59d1..0edf9f6d 100644
--- a/rsvg-path.c
+++ b/rsvg-path.c
@@ -506,7 +506,7 @@ rsvg_parse_path_data (RSVGParsePathCtx *ctx, const char *data)
break;
else if ((c == '+' || c == '-') && !exp_wait_sign)
{
- sign = c == '+' ? 1 : -1;;
+ sign = c == '+' ? 1 : -1;
val = 0;
in_num = TRUE;
in_frac = FALSE;