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

Fixed harmless gcc warning.

parent 099c3b46
No related branches found
No related tags found
No related merge requests found
......@@ -413,7 +413,7 @@ void sbbs_t::ctrl_a(char x)
console&=~CON_ECHO_OFF;
break;
case '+': /* push current attribte */
if(attr_sp<sizeof(attr_stack))
if(attr_sp<(int)sizeof(attr_stack))
attr_stack[attr_sp++]=curatr;
break;
case '-': /* pop current attribute OR optimized "normal" */
......
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