From d8805f9ba563f3ed85d8725819bc62b689182429 Mon Sep 17 00:00:00 2001 From: ponchio Date: Tue, 6 Nov 2007 10:59:41 +0000 Subject: [PATCH] Typo --- wrap/io_trimesh/export_ply.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wrap/io_trimesh/export_ply.h b/wrap/io_trimesh/export_ply.h index 917da91a..3d6d293e 100644 --- a/wrap/io_trimesh/export_ply.h +++ b/wrap/io_trimesh/export_ply.h @@ -24,6 +24,9 @@ History $Log: not supported by cvs2svn $ +Revision 1.26 2007/11/06 10:51:55 ponchio +Fixed wrong 'return false' in Save. + Revision 1.25 2007/10/22 14:47:19 cignoni Added saving of per vertex normals @@ -188,7 +191,7 @@ static int Save(SaveMeshType &m, const char * filename, bool binary, PlyInfo &p fpout = fopen(filename,"wb"); if(fpout==NULL) { pi.status=::vcg::ply::E_CANTOPEN; - return E_CANTOPEN; + return ::vcg::ply::E_CANTOPEN; } fprintf(fpout, "ply\n"