[libFuzzer] fix -Werror build

llvm-svn: 363469
GitOrigin-RevId: 2fa6838e5fe93c9eb492e8bc9d9b2295cc2f9fe2
diff --git a/FuzzerDataFlowTrace.cpp b/FuzzerDataFlowTrace.cpp
index bd249c4..c7200a3 100644
--- a/FuzzerDataFlowTrace.cpp
+++ b/FuzzerDataFlowTrace.cpp
@@ -123,7 +123,7 @@
 static bool ParseError(const char *Err, const std::string &Line) {
   Printf("DataFlowTrace: parse error: %s: Line: %s\n", Err, Line.c_str());
   return false;
-};
+}
 
 // TODO(metzman): replace std::string with std::string_view for
 // better performance. Need to figure our how to use string_view on Windows.