Fix GCC Wparentheses error in quic_connection.cc

PiperOrigin-RevId: 359499340
Change-Id: I2972ebace7fb87899effb63be0e3ccb9c4440824
diff --git a/quic/core/quic_connection.cc b/quic/core/quic_connection.cc
index 13271d6..471331b 100644
--- a/quic/core/quic_connection.cc
+++ b/quic/core/quic_connection.cc
@@ -4839,8 +4839,8 @@
   // Update congestion controller if the address change type is not PORT_CHANGE.
   if (type == PORT_CHANGE) {
     QUICHE_DCHECK(previous_default_path.validated ||
-                  alternative_path_.validated &&
-                      alternative_path_.send_algorithm != nullptr);
+                  (alternative_path_.validated &&
+                   alternative_path_.send_algorithm != nullptr));
     // No need to store previous congestion controller because either the new
     // default path is validated or the alternative path is validated and
     // already has associated congestion controller.