From 00a300a10a8291c98831b4bc23b5e6cefeb64bef Mon Sep 17 00:00:00 2001
From: "Rob Swindell (on Debian Linux)" <rob@synchro.net>
Date: Sun, 17 Mar 2024 00:33:33 -0700
Subject: [PATCH] Resolve a couple GCC warnings of impossible conditions

---
 src/sbbs3/listfile.cpp | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/sbbs3/listfile.cpp b/src/sbbs3/listfile.cpp
index d6fd112ed4..ca1323f0be 100644
--- a/src/sbbs3/listfile.cpp
+++ b/src/sbbs3/listfile.cpp
@@ -464,7 +464,8 @@ int sbbs_t::batchflagprompt(smb_t* smb, file_t** bf, uint* row, const int total
 							,const int totalfiles)
 {
 	char	ch,str[256],*p;
-	bool	remcdt,remfile;
+	bool	remcdt = false;
+	bool	remfile = false;
 	int		c, d;
 	char 	path[MAX_PATH + 1];
 	int		i,j;
-- 
GitLab