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

Resolve GCC warning: comparison between signed and unsigned integer expressions

parent aa5f5975
No related branches found
No related tags found
No related merge requests found
......@@ -220,7 +220,8 @@ void sbbs_t::ansi_getlines()
bool sbbs_t::ansi_getxy(int* x, int* y)
{
int rsp=0, ch;
size_t rsp=0;
int ch;
char str[128];
*x=0;
......
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