| Index: src/utils/SkPathUtils.cpp
 | 
| diff --git a/src/utils/SkPathUtils.cpp b/src/utils/SkPathUtils.cpp
 | 
| index dd50ff79573222c87543f381717be91580954d82..2e17ccb1d33a3d047d8994a3f8dc15e4807a4522 100644
 | 
| --- a/src/utils/SkPathUtils.cpp
 | 
| +++ b/src/utils/SkPathUtils.cpp
 | 
| @@ -97,19 +97,19 @@ static void Line2path_span(SkPath* path, const char* line,
 | 
|  
 | 
|  void SkPathUtils::BitsToPath_Path(SkPath* path,
 | 
|                          const char* bitmap,
 | 
| -                        int h, int w, int stride) {
 | 
| +                        int w, int h, int stride) {
 | 
|      // loop for every line in bitmap
 | 
|      for (int i = 0; i < h; ++i) {
 | 
|          // fn ptr handles each line separately
 | 
|          //l2p_fn(path, &bitmap[i*stride], i, w);
 | 
|          Line2path_span(path, &bitmap[i*stride], i, w);
 | 
|      }
 | 
| -    Simplify(*path, path); // simplify resulting bitmap
 | 
| +    Simplify(*path, path); // simplify resulting path.
 | 
|  }
 | 
|  
 | 
|  void SkPathUtils::BitsToPath_Region(SkPath* path,
 | 
|                                 const char* bitmap,
 | 
| -                               int h, int w, int stride) {
 | 
| +                               int w, int h, int stride) {
 | 
|      SkRegion region;
 | 
|  
 | 
|      // loop for each line
 | 
| 
 |