From: Dirk Lemstra Date: Fri, 16 Mar 2018 23:29:25 +0000 (+0100) Subject: Renamed variable. X-Git-Tag: 7.0.7-27~29 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=41c4133fee953963e850ede0e8f77547c389de41;p=imagemagick Renamed variable. --- diff --git a/MagickCore/opencl.c b/MagickCore/opencl.c index 4c9f371ee..1e68cefbb 100644 --- a/MagickCore/opencl.c +++ b/MagickCore/opencl.c @@ -1290,7 +1290,7 @@ static MagickBooleanType LoadCachedOpenCLKernel(MagickCLDevice device, status; ExceptionInfo - *exception; + *sans_exception; size_t length; @@ -1298,9 +1298,10 @@ static MagickBooleanType LoadCachedOpenCLKernel(MagickCLDevice device, unsigned char *binaryProgram; - exception=AcquireExceptionInfo(); - binaryProgram=(unsigned char *) FileToBlob(filename,~0UL,&length,exception); - exception=DestroyExceptionInfo(exception); + sans_exception=AcquireExceptionInfo(); + binaryProgram=(unsigned char *) FileToBlob(filename,~0UL,&length, + sans_exception); + sans_exception=DestroyExceptionInfo(sans_exception); if (binaryProgram == (unsigned char *) NULL) return(MagickFalse); device->program=openCL_library->clCreateProgramWithBinary(device->context,1,