From 4409f18f59f81c810c5839d1090ef46f73abc21c Mon Sep 17 00:00:00 2001 From: Ykkrosh Date: Sat, 25 Jul 2009 14:22:21 +0000 Subject: [PATCH] Revert 649ff371b4 since it breaks 64-bit Linux, and the real problem is in the OS X build. This was SVN commit r7032. --- source/collada/XMLFix.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/collada/XMLFix.cpp b/source/collada/XMLFix.cpp index 7938195926..b40adbb3fd 100644 --- a/source/collada/XMLFix.cpp +++ b/source/collada/XMLFix.cpp @@ -174,7 +174,7 @@ void FixBrokenXML(const char* text, const char** out, size_t* outSize) // Reserialising the document, then parsing it again inside FCollada, is a bit ugly; // but it's the only way I can see to make it work through FCollada's public API xmlChar* mem = NULL; - intptr_t size = -1; + int size = -1; xmlDocDumpFormatMemory(doc, &mem, &size, 0); *out = (const char*)mem; *outSize = size;