Fix warning
authorTrianglesPCT <dain.bray@gmail.com>
Sun, 24 Jul 2016 08:33:33 +0000 (02:33 -0600)
committerGitHub <noreply@github.com>
Sun, 24 Jul 2016 08:33:33 +0000 (02:33 -0600)
The call to sprintf was causing a warning in vs2015 because of wrong type.

contrib/openddlparser/code/OpenDDLExport.cpp

index 6f1c344..49207c0 100644 (file)
@@ -280,7 +280,7 @@ bool OpenDDLExport::writeValueType( Value::ValueType type, size_t numItems, std:
         statement += "[";
         char buffer[ 256 ];
         ::memset( buffer, '\0', 256 * sizeof( char ) );
-        sprintf( buffer, "%d", numItems );
+        sprintf( buffer, "%d", int(numItems) );
         statement += buffer;
         statement += "]";
     }