From 1502c66918a39a5a0781b3adaf9bc81c8f5fda72 Mon Sep 17 00:00:00 2001 From: Markus Engel Date: Sat, 19 Oct 2013 00:12:56 +0200 Subject: Fix build errors with clang 3.3 and c++11 enabled. (bzr r12701) --- src/sp-polygon.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/sp-polygon.cpp') diff --git a/src/sp-polygon.cpp b/src/sp-polygon.cpp index 983a738ce..a5ddd653a 100644 --- a/src/sp-polygon.cpp +++ b/src/sp-polygon.cpp @@ -98,7 +98,7 @@ static gboolean polygon_get_value(gchar const **p, gdouble *v) (*p)++; } - if (*p == '\0') { + if (**p == '\0') { return false; } -- cgit v1.2.3