From f3588d322a621f736a595563c5ce7dcb37f046b5 Mon Sep 17 00:00:00 2001 From: Rob Swindell <rob@synchro.net> Date: Wed, 30 Sep 2020 21:26:41 -0700 Subject: [PATCH] Resolve a gcc warning about signedness. --- src/sbbs3/postmsg.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sbbs3/postmsg.cpp b/src/sbbs3/postmsg.cpp index a1d5f56e20..f2bae8aea8 100644 --- a/src/sbbs3/postmsg.cpp +++ b/src/sbbs3/postmsg.cpp @@ -499,7 +499,7 @@ extern "C" int DLLCALL savemsg(scfg_t* cfg, smb_t* smb, smbmsg_t* msg, client_t* i = userdatdupe(cfg, 0, U_NAME, LEN_NAME, msg->to, /* del: */FALSE, /* next: */FALSE, NULL, NULL); else i = matchuser(cfg, msg->to, TRUE /* sysop_alias */); - if(i > 0 && (client == NULL || i != client->usernum)) { + if(i > 0 && (client == NULL || i != (int)client->usernum)) { char str[256]; if(smb->subnum == INVALID_SUB) { safe_snprintf(str, sizeof(str), cfg->text[UserSentYouMail], msg->from); -- GitLab