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

Fix another new GCC warning I missed

parent 2e8efed6
Branches
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
......@@ -1728,7 +1728,7 @@ const char* sbbs_t::atcode(char* sp, char* str, size_t maxlen, long* pmode, bool
else if(!strcmp(sp,"FTODAY"))
safe_snprintf(str,maxlen,"%lu", (ulong)stats.ftoday);
else if(!strcmp(sp,"NUSERS"))
safe_snprintf(str,maxlen,"%u",stats.nusers);
safe_snprintf(str,maxlen,"%lu",stats.nusers);
return(str);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment