Skip to content
Snippets Groups Projects
Commit 19975dfa authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Resolved sign/unsigned compare warning

parent 7930e61e
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
...@@ -1329,7 +1329,7 @@ int delmsgs(BOOL del) ...@@ -1329,7 +1329,7 @@ int delmsgs(BOOL del)
int result; int result;
smbmsg_t msg; smbmsg_t msg;
for(int i = 0; i < smb.status.total_msgs; i++) { for(uint i = 0; i < smb.status.total_msgs; i++) {
ZERO_VAR(msg); ZERO_VAR(msg);
msg.idx_offset = i; msg.idx_offset = i;
result = smb_getmsgidx(&smb, &msg); result = smb_getmsgidx(&smb, &msg);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment