diff options
Diffstat (limited to 'src/primitives.cc')
-rw-r--r-- | src/primitives.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/primitives.cc b/src/primitives.cc index b18a816..67e19c3 100644 --- a/src/primitives.cc +++ b/src/primitives.cc @@ -505,7 +505,7 @@ sphere_next_r2: for (size_t i=0; i<this->points.vec.size(); i++) { double x,y; if (!this->points.vec[i]->getv2(x, y)) { - PRINTF("ERROR: Unable to convert point at index %d to a vec2 of numbers", i); + PRINTF("ERROR: Unable to convert point at index %d to a vec2 of numbers", int(i)); delete p; return NULL; } |