From a7cf9c9696dbdcc422bd14bc5af5485c2179e9ab Mon Sep 17 00:00:00 2001 From: Uwe Koloska Date: Wed, 14 Oct 2015 16:41:55 +0200 Subject: use better type for pointer cast --- src/openscenegraph-3-fix-pointer-to-int-conversion-on-64bit.patch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/openscenegraph-3-fix-pointer-to-int-conversion-on-64bit.patch b/src/openscenegraph-3-fix-pointer-to-int-conversion-on-64bit.patch index aae13de..6e0a6b4 100644 --- a/src/openscenegraph-3-fix-pointer-to-int-conversion-on-64bit.patch +++ b/src/openscenegraph-3-fix-pointer-to-int-conversion-on-64bit.patch @@ -14,12 +14,12 @@ diff --git a/src/osgPlugins/osgjs/WriteVisitor.cpp b/src/osgPlugins/osgjs/WriteV index 9f2b3c7..98e0c19 100644 --- a/src/osgPlugins/osgjs/WriteVisitor.cpp +++ b/src/osgPlugins/osgjs/WriteVisitor.cpp -@@ -225,7 +225,7 @@ JSONObject* createImage(osg::Image* image, bool inlineImages, int maxTextureDime +@@ -225,8 +225,7 @@ JSONObject* createImage(osg::Image* image, bool inlineImages, int maxTextureDime // no image file so use this inline name image and create a file std::stringstream ss; ss << osgDB::getFilePath(baseName) << osgDB::getNativePathSeparator(); - ss << (long int)image << ".inline_conv_generated.png"; // write the pointer location -+ ss << (long long int)image << ".inline_conv_generated.png"; // write the pointer location ++ ss << (intptr_t)image << ".inline_conv_generated.png"; // write the pointer location std::string filename = ss.str(); if (osgDB::writeImageFile(*image, filename)) { image->setFileName(filename); -- cgit v0.12