| Index: src/core/SkLinearBitmapPipeline_sample.h | 
| diff --git a/src/core/SkLinearBitmapPipeline_sample.h b/src/core/SkLinearBitmapPipeline_sample.h | 
| index 20057cc992944d95ada788ee47503540ff26850c..78f46ff797d330250245f4be9bd013e0d093609b 100644 | 
| --- a/src/core/SkLinearBitmapPipeline_sample.h | 
| +++ b/src/core/SkLinearBitmapPipeline_sample.h | 
| @@ -445,7 +445,7 @@ private: | 
| // on the interval [0, vMax]. | 
| // Note: vMax is not width or height, but width-1 or height-1 because it is the largest valid pixel. | 
| static inline int adjust_edge(SkShader::TileMode edgeType, int vs, int vMax) { | 
| -    SkASSERT(-1 <= vs && vs <= vMax + 1) | 
| +    SkASSERT(-1 <= vs && vs <= vMax + 1); | 
| switch (edgeType) { | 
| case SkShader::kClamp_TileMode: | 
| case SkShader::kMirror_TileMode: | 
|  |