1diff --git a/third_party/lcms/src/cmsxform.c b/third_party/lcms/src/cmsxform.c 2index 6b2950e4e..508117bd3 100644 3--- a/third_party/lcms/src/cmsxform.c 4+++ b/third_party/lcms/src/cmsxform.c 5@@ -341,7 +341,7 @@ void NullFloatXFORM(_cmsTRANSFORM* p, 6 7 // 16 bit precision ----------------------------------------------------------------------------------------------------------- 8 9-// Null transformation, only applies formatters. No cach� 10+// Null transformation, only applies formatters. No cache 11 static 12 void NullXFORM(_cmsTRANSFORM* p, 13 const void* in, 14@@ -442,7 +442,7 @@ void TransformOnePixelWithGamutCheck(_cmsTRANSFORM* p, 15 p ->Lut ->Eval16Fn(wIn, wOut, p -> Lut->Data); 16 } 17 18-// Gamut check, No cach�, 16 bits. 19+// Gamut check, No cache, 16 bits. 20 static 21 void PrecalculatedXFORMGamutCheck(_cmsTRANSFORM* p, 22 const void* in, 23@@ -481,7 +481,7 @@ void PrecalculatedXFORMGamutCheck(_cmsTRANSFORM* p, 24 } 25 26 27-// No gamut check, Cach�, 16 bits, 28+// No gamut check, Cache, 16 bits, 29 static 30 void CachedXFORM(_cmsTRANSFORM* p, 31 const void* in, 32@@ -839,7 +839,7 @@ _cmsTRANSFORM* AllocEmptyTransform(cmsContext ContextID, cmsPipeline* lut, 33 p ->xform = NullFloatXFORM; 34 } 35 else { 36- // Float transforms don't use cach�, always are non-NULL 37+ // Float transforms don't use cache, always are non-NULL 38 p ->xform = FloatXFORM; 39 } 40 41@@ -878,16 +878,16 @@ _cmsTRANSFORM* AllocEmptyTransform(cmsContext ContextID, cmsPipeline* lut, 42 if (*dwFlags & cmsFLAGS_NOCACHE) { 43 44 if (*dwFlags & cmsFLAGS_GAMUTCHECK) 45- p ->xform = PrecalculatedXFORMGamutCheck; // Gamut check, no cach� 46+ p ->xform = PrecalculatedXFORMGamutCheck; // Gamut check, no cache 47 else 48- p ->xform = PrecalculatedXFORM; // No cach�, no gamut check 49+ p ->xform = PrecalculatedXFORM; // No cache, no gamut check 50 } 51 else { 52 53 if (*dwFlags & cmsFLAGS_GAMUTCHECK) 54- p ->xform = CachedXFORMGamutCheck; // Gamut check, cach� 55+ p ->xform = CachedXFORMGamutCheck; // Gamut check, cache 56 else 57- p ->xform = CachedXFORM; // No gamut check, cach� 58+ p ->xform = CachedXFORM; // No gamut check, cache 59 60 } 61 } 62