Fix lint issue introduced in commit 84cf0b20.

Change-Id: Id0f34f57ff1c3caccecb53c38146004170262a92
Reviewed-on: https://pdfium-review.googlesource.com/c/pdfium/+/55731
Commit-Queue: Lei Zhang <thestig@chromium.org>
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Reviewed-by: Lei Zhang <thestig@chromium.org>
diff --git a/core/fpdfapi/parser/cpdf_syntax_parser.cpp b/core/fpdfapi/parser/cpdf_syntax_parser.cpp
index c990030..d510c19 100644
--- a/core/fpdfapi/parser/cpdf_syntax_parser.cpp
+++ b/core/fpdfapi/parser/cpdf_syntax_parser.cpp
@@ -520,7 +520,8 @@
     }
 
     AutoRestorer<FX_FILESIZE> pos_restorer(&m_Pos);
-    if (GetNextWord(nullptr) != "stream") return pDict;
+    if (GetNextWord(nullptr) != "stream")
+      return pDict;
     pos_restorer.AbandonRestoration();
     return ReadStream(std::move(pDict));
   }