From 3cca779fefc3e1e489fd8cd991ed2d35c80c22f8 Mon Sep 17 00:00:00 2001
From: "Rob Swindell (on Debian Linux)" <rob@synchro.net>
Date: Mon, 20 Feb 2023 14:15:43 -0800
Subject: [PATCH] Fix warning about signed/unsigned compare

---
 src/sbbs3/un_rep.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/sbbs3/un_rep.cpp b/src/sbbs3/un_rep.cpp
index 7c211c5efa..f1721bd631 100644
--- a/src/sbbs3/un_rep.cpp
+++ b/src/sbbs3/un_rep.cpp
@@ -38,7 +38,7 @@ bool sbbs_t::unpack_rep(char* repfile)
 	int 	file;
 	uint	i,j,k,lastsub=INVALID_SUB;
 	uint	blocks;
-	uint	usernum;
+	int		usernum;
 	long	l,size;
 	ulong	n;
 	ulong	ex;
-- 
GitLab