don't unnecessarily use continue

This commit is contained in:
Oswald Buddenhagen 2013-05-09 18:51:24 +02:00
parent e4243debb6
commit 5ad83b4e6a

View File

@ -1211,13 +1211,13 @@ box_loaded( int sts, void *aux )
} else { } else {
if (tmsg->srec) { if (tmsg->srec) {
debug( " -> not %sing - still too big\n", str_hl[t] ); debug( " -> not %sing - still too big\n", str_hl[t] );
continue; } else {
}
debug( " -> not %sing - too big\n", str_hl[t] ); debug( " -> not %sing - too big\n", str_hl[t] );
msg_copied_p2( svars, srec, t, tmsg, -1 ); msg_copied_p2( svars, srec, t, tmsg, -1 );
} }
} }
} }
}
svars->state[t] |= ST_SENT_NEW; svars->state[t] |= ST_SENT_NEW;
msgs_copied( svars, t ); msgs_copied( svars, t );
} }