From c7aaf2fcb87b0c7ed4205be9ba2c26051c13920b Mon Sep 17 00:00:00 2001
From: Eli Zaretskii <eliz@gnu.org>
Date: Sat, 11 Sep 2021 17:50:08 +0300
Subject: [PATCH] ; * src/w32term.c (w32_read_socket): Avoid compiler warning.

---
 src/w32term.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/w32term.c b/src/w32term.c
index 3eb078a66d8..70e5501db1d 100644
--- a/src/w32term.c
+++ b/src/w32term.c
@@ -5225,8 +5225,8 @@ w32_read_socket (struct terminal *terminal,
 			&& !frame_ancestor_p (f, dpyinfo->w32_focus_frame)))
 		  inev.kind = NO_EVENT;
 
-		  if (!NILP (tab_bar_arg))
-		    inev.arg = tab_bar_arg;
+		if (!NILP (tab_bar_arg))
+		  inev.arg = tab_bar_arg;
 
                 /* Is this in the tool-bar?  */
                 if (WINDOWP (f->tool_bar_window)
-- 
2.39.5