Less indentation.

Review-Url: https://codereview.chromium.org/1963693002
diff --git a/src/ports/SkFontHost_FreeType.cpp b/src/ports/SkFontHost_FreeType.cpp
index 4dc401c..2e0b8b6 100644
--- a/src/ports/SkFontHost_FreeType.cpp
+++ b/src/ports/SkFontHost_FreeType.cpp
@@ -606,18 +606,19 @@
             info->fGlyphWidths.emplace_back(std::move(range));
         } else {
             info->setGlyphWidths(
-                    face->num_glyphs, glyphIDs, glyphIDsCount,
-                    SkAdvancedTypefaceMetrics::GetAdvance(
-                            [face](int gId, int16_t* data) {
-                                FT_Fixed advance = 0;
-                                if (FT_Get_Advances(face, gId, 1,
-                                                    FT_LOAD_NO_SCALE, &advance)) {
-                                    return false;
-                                }
-                                SkASSERT(data);
-                                *data = advance;
-                                return true;
-                            }));
+                face->num_glyphs,
+                glyphIDs,
+                glyphIDsCount,
+                SkAdvancedTypefaceMetrics::GetAdvance([face](int gId, int16_t* data) {
+                    FT_Fixed advance = 0;
+                    if (FT_Get_Advances(face, gId, 1, FT_LOAD_NO_SCALE, &advance)) {
+                        return false;
+                    }
+                    SkASSERT(data);
+                    *data = advance;
+                    return true;
+                })
+            );
         }
     }