diff -Nura openexr-1.7.0/exrenvmap/blurImage.cpp openexr-1.7.0.new/exrenvmap/blurImage.cpp --- openexr-1.7.0/exrenvmap/blurImage.cpp 2009-02-25 20:39:27.000000000 -0300 +++ openexr-1.7.0.new/exrenvmap/blurImage.cpp 2011-02-07 23:48:47.257891701 -0200 @@ -45,6 +45,7 @@ #include "Iex.h" #include #include +#include using namespace std; using namespace Imf; @@ -420,6 +421,6 @@ int h = dw.max.y - dw.min.y + 1; size_t size = w * h * sizeof (Rgba); - memcpy (&image1.pixels()[0][0], &iptr1->pixels()[0][0], size); + memcpy (&(image1.pixels()[0][0]),&(iptr1->pixels()[0][0]),size); } }