Skip to content
Snippets Groups Projects
Commit 90ba82dd authored by rswindell's avatar rswindell
Browse files

Fixed GCC warning: format '%d' expects argument of type 'int', but argument 5

has type 'size_t'
parent bb88ac06
No related branches found
No related tags found
No related merge requests found
......@@ -875,7 +875,7 @@ ulong sbbs_t::msgeditor(char *buf, const char *top, char *title)
}
if(strin[0]=='/' && strlen(strin)<8) {
if(!stricmp(strin,"/DEBUG") && SYSOP) {
bprintf("\r\nline=%d lines=%d (%d), rows=%ld\r\n",line,lines,strListCount(str), rows);
bprintf("\r\nline=%d lines=%d (%d), rows=%ld\r\n",line,lines,(int)strListCount(str), rows);
continue;
}
else if(!stricmp(strin,"/ABT")) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment