From cbb3640a6db902cc3959d2e6bb094b7f88ba77e2 Mon Sep 17 00:00:00 2001
From: rswindell <>
Date: Tue, 5 May 2020 19:54:08 +0000
Subject: [PATCH] SMBLIB functions return a signed int.

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

diff --git a/src/sbbs3/qwktomsg.cpp b/src/sbbs3/qwktomsg.cpp
index f7acd5f104..baa9e63fd8 100644
--- a/src/sbbs3/qwktomsg.cpp
+++ b/src/sbbs3/qwktomsg.cpp
@@ -246,7 +246,8 @@ bool sbbs_t::qwk_import_msg(FILE *qwk_fp, char *hdrblk, ulong blocks
 	char*		qwkbuf;
 	char		str[256],col=0,lastch=0,*p;
 	char		from[128];
-	uint 		i,k;
+	int 		i;
+	uint		k;
 	long		bodylen,taillen;
 	bool		success=false;
 	uint16_t	net_type;
-- 
GitLab