Some minor mods in mixed mode checking

This commit is contained in:
ceriel
1991-03-27 12:46:37 +00:00
parent 0159b2b79d
commit b6fefd8219
2 changed files with 3 additions and 3 deletions

View File

@@ -515,9 +515,9 @@ legal_mixture(tp, otp, diag)
struct type *tp, *otp;
int diag;
{
register struct proto *pl = tp->tp_proto, *opl = otp->tp_proto;
struct proto *pl = tp->tp_proto, *opl = otp->tp_proto;
int retval = 1;
struct proto *prot;
register struct proto *prot;
int fund;
ASSERT( (pl != 0) ^ (opl != 0));