From c00364a6c8be49abed0c7cdee65cb0b94b2c0f3c Mon Sep 17 00:00:00 2001 From: Zachary Anderson Date: Thu, 11 Apr 2019 09:45:24 -0700 Subject: [PATCH] [font_collection] Add missing semicolon (#8546) --- third_party/txt/src/txt/font_collection.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/third_party/txt/src/txt/font_collection.cc b/third_party/txt/src/txt/font_collection.cc index 2872af08c0e65..99be0100957d1 100644 --- a/third_party/txt/src/txt/font_collection.cc +++ b/third_party/txt/src/txt/font_collection.cc @@ -212,7 +212,7 @@ std::shared_ptr FontCollection::CreateMinikinFontFamily( // Add fonts to the Minikin font family. for (int i = 0; i < font_style_set->count(); ++i) { - TRACE_EVENT0("flutter", "CreateMinikinFont") + TRACE_EVENT0("flutter", "CreateMinikinFont"); // Create the skia typeface. sk_sp skia_typeface( sk_sp(font_style_set->createTypeface(i)));