From a5f4b797c7f8173a4d20a8e6fea64c8eda2937e0 Mon Sep 17 00:00:00 2001 From: maxcorsini Date: Mon, 15 Apr 2013 12:29:54 +0000 Subject: [PATCH] add newline at the end of file tag - this fix a problem on mac platform --- wrap/io_trimesh/export_obj.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wrap/io_trimesh/export_obj.h b/wrap/io_trimesh/export_obj.h index 4006502d..bb012548 100644 --- a/wrap/io_trimesh/export_obj.h +++ b/wrap/io_trimesh/export_obj.h @@ -266,7 +266,7 @@ namespace io { }//for fprintf(fp,"# %d faces, %d coords texture\n\n",m.fn,int(CoordIndexTexture.size())); - fprintf(fp,"# End of File"); + fprintf(fp,"# End of File\n"); fclose(fp); int r = 0;