fix missing end of statement

This commit is contained in:
Carmelo Messina
2022-10-17 10:10:18 +02:00
parent 8287cb2e9a
commit 32c814d238
@@ -16,7 +16,7 @@ diff --git a/content/common/user_agent.cc b/content/common/user_agent.cc
- return "SAMSUNG SM-G960U";
+ std::string model;
+#if BUILDFLAG(IS_ANDROID)
+ model = "SAMSUNG SM-G960U"
+ model = "SAMSUNG SM-G960U";
+#endif
+ return model;
}