Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2011-12-02 18:26:28 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2011-12-02 18:26:28 +0400
commitefe4ea284abb33bbc0ab99e636decd3195c0e333 (patch)
tree7bf6b3fa602b7fdf5b911ef3e650d1779be0684d /intern/cycles/subd
parent1f96a120f6c7bb34a20e524cdd51b151f61c4b75 (diff)
Cycles:
* Fix broken compile of test app. * Fix some warnings compiling with gcc for 32 bit. * More tweaks to avoid extended precision issue from #29301.
Diffstat (limited to 'intern/cycles/subd')
-rw-r--r--intern/cycles/subd/subd_mesh.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/subd/subd_mesh.cpp b/intern/cycles/subd/subd_mesh.cpp
index 8ed4854b786..3e6e0de48ea 100644
--- a/intern/cycles/subd/subd_mesh.cpp
+++ b/intern/cycles/subd/subd_mesh.cpp
@@ -88,7 +88,7 @@ SubdFace *SubdMesh::add_face(int *index, int num)
/* test non-manifold cases */
if(!can_add_face(index, num)) {
/* we could try to add face in opposite winding instead .. */
- fprintf(stderr, "Warning: non manifold mesh, invalid face '%lu'.\n", faces.size());
+ fprintf(stderr, "Warning: non manifold mesh, invalid face '%lu'.\n", (unsigned long)faces.size());
return NULL;
}