From 73e6908c362cabade4c471b69bc4af4f4249f35c Mon Sep 17 00:00:00 2001 From: Peter LaValle Date: Tue, 15 Apr 2014 15:10:48 +0100 Subject: [PATCH] fixed " ... " typo The XML tags did not match. Mismatched tags confuse XML parser kits. So I fixed the tags to match. --- tools/assimp_cmd/WriteDumb.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/assimp_cmd/WriteDumb.cpp b/tools/assimp_cmd/WriteDumb.cpp index c12ebdd06..d33a83f64 100644 --- a/tools/assimp_cmd/WriteDumb.cpp +++ b/tools/assimp_cmd/WriteDumb.cpp @@ -1258,7 +1258,7 @@ void WriteDump(const aiScene* scene, FILE* out, const char* src, const char* cmd mesh->mColors[a][n].a); } } - fprintf(out,"\t\t\n"); + fprintf(out,"\t\t\n"); } fprintf(out,"\t\n"); }