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

Added typecast to eliminate gcc warning.

parent 9864d641
Branches
Tags
No related merge requests found
...@@ -90,7 +90,7 @@ bool sbbs_t::answer() ...@@ -90,7 +90,7 @@ bool sbbs_t::answer()
str2[i]=in; str2[i]=in;
} }
str2[i]=0; str2[i]=0;
for(i=0;i<sizeof(terminal)-1;i++) { for(i=0;i<(int)sizeof(terminal)-1;i++) {
in=incom(1000); in=incom(1000);
if(in==0 || in==NOINP) if(in==0 || in==NOINP)
break; break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment