From 9e2b3380b80a9f5eac25201eafad16ca637483df Mon Sep 17 00:00:00 2001 From: maxcorsini Date: Fri, 10 Feb 2006 16:14:53 +0000 Subject: [PATCH] Fix typo --- wrap/io_trimesh/import.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wrap/io_trimesh/import.h b/wrap/io_trimesh/import.h index f1f6e2d1..9eaf64e2 100644 --- a/wrap/io_trimesh/import.h +++ b/wrap/io_trimesh/import.h @@ -25,6 +25,9 @@ History $Log: not supported by cvs2svn $ +Revision 1.5 2006/02/10 08:14:32 cignoni +Refactored import. No more duplicated code + Revision 1.4 2006/02/09 16:04:45 corsini Expose load mask @@ -83,7 +86,7 @@ static bool FileExtension(std::string filename, std::string extension) // Open Mesh and return load mask static int Open(OpenMeshType &m, const char *filename, CallBackPos *cb=0) { - int &dummymask; + int dummymask; return Open(m,filename,dummymask,cb); }