Skip to content
Snippets Groups Projects
Commit 4fe576f7 authored by rswindell's avatar rswindell
Browse files

Added typecast to eliminate gcc warning.

parent 9864d641
No related branches found
No related tags found
No related merge requests found
......@@ -90,7 +90,7 @@ bool sbbs_t::answer()
str2[i]=in;
}
str2[i]=0;
for(i=0;i<sizeof(terminal)-1;i++) {
for(i=0;i<(int)sizeof(terminal)-1;i++) {
in=incom(1000);
if(in==0 || in==NOINP)
break;
......
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